vote up 2 vote down star
1

Using Java 6, how can I implement a mixin? It is very easy and possible in Ruby. How can I get similar in Java?

flag
You mean mixin? The kind that is usually done with multiple inheritance? – David Feb 25 at 19:32

9 Answers

vote up 1 vote down

just ran across: http://www.berniecode.com/blog/2009/08/16/mixins-for-java/

link|flag
vote up 0 vote down

The simplest approach is to use static imports. It allows for code reuse that 'looks' like it's part of the class, but is really defined elsewhere.

Pros:

  • really easy
  • you can 'mixin' as many static imports as you like

Cons:

  • the static methods won't have access to 'this', so you'd have to pass it in manually
  • no state: your static methods can't have their own instance fields. They can only define their own static fields, which are then shared by any object calling the static method.
  • can't define public methods on the client class (the one with code being mixed into it). In Ruby, importing a mixin will actually define those public methods as public methods on your class. In Java, inheritance would be a better solution in this case (assuming you don't need to extend multiple classes)

Example:

import static my.package.MyHelperUtility.methodDefinedInAnotherClass;

public class MyNormalCode {
    public void example() {
        methodDefinedInAnotherClass();
    }
}
link|flag
vote up 2 vote down

You could use CGLIB for that. The class Mixin is able to generate a dynamic class from several interfaces / object delegates:

static Mixin    create(java.lang.Class[] interfaces,
                        java.lang.Object[] delegates)
static Mixin    create(java.lang.Object[] delegates)
static Mixin    createBean(java.lang.Object[] beans)
link|flag
vote up 0 vote down

I believe this may answer you question...although I'm not completely sure I understand what a mixin is yet...

link|flag
vote up 1 vote down

I'd say just use object composition. Every time you want to throw in new functionality, compose another object into the class as a member. If you want to make all of your mixed-in classes of the same type, you can use an array as a member object where each element is composed with all of the others, and you can dispatch to a particular element.

link|flag
vote up 2 vote down

Take a peek at http://code.google.com/p/javadude/wiki/AnnotationsMixinExample

It's using a set of annotations I've created.

Note: I'm working on a major update to the annotations, which includes some API breakage. I plan to release a new version in the next few weeks.

link|flag
vote up 2 vote down

In the sense that a Ruby mix-in is the equivalent of a Java abstract class, no, you cannot implement a mix-in in Java. You can come close by using interfaces and thus defining absolutely no code in your mix-in, but you cannot directly achieve the same behavior as in a Ruby mix-in.

link|flag
vote up 0 vote down

Faking mixins in Java: http://jonaquino.blogspot.com/2005/07/java-mixin-pattern-or-faking-multiple.html

link|flag
vote up 1 vote down

Since Java only supports single inheritance, that is not possible. Have a look at WP: Mixin.

EDIT: Because of the comments about interfaces: The cool thing about mixins is that you can combine them without writing the combination's code. With interfaces you have to implement the combination's functionality yourself (except one class you can extend)!

link|flag
It say its possible using interfaces? – Lennie Feb 25 at 19:37
It's half possible using interfaces. – Oscar Reyes Feb 25 at 19:39
HALF possible ;-) – Johannes Weiß Feb 25 at 19:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.