I just found an article on a framework in Java that apparently allows it to support Mixins and something called Composite Oriented Programming (which for all I know might even be the same thing...) I've also heard of/worked with AOP, and I'm not sure how it differs from this either...

link|improve this question

74% accept rate
feedback

2 Answers

up vote 13 down vote accepted

At a language-agnostic level, a mixin just adds functionality to a class, and is more for programmer convenience and to avoid code duplication. An abstract (base) class forms an is-a relationship and allows for polymorphism. One reason why inheritance is overused is that it's an easy way to implement mixins without writing any boilerplate in languages that don't really support them. The problem is that you're declaring a polymorphic is-a relationship as a side effect, making your API more confusing and possibly adding ambiguity. Hence, newer languages like D and Ruby support mixins as native features, allowing a convenient way to add a bunch of functionality to a class without declaring a polymorphic is-a relationship.

link|improve this answer
+1 Good brief explanation. This COP stuff sounds cool. Although I like to see this kind of thing work its way down to the core language level. Same with AOP stuff. – brun Feb 26 '09 at 17:01
@Bruno A core language like C++? – leeand00 Feb 26 '09 at 19:43
concise and very clear. Awesome explanation! – Hugo Nov 29 '10 at 17:02
feedback

Mixin is never meant as stand alone class. They just add some functionality to the class you declare. In Python they can be easily applied by class decorators. For example you could decorate your class with Singleton mixin, making your class a singleton.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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