What is the difference between an Abstract Class and a Mixin?
Asked Answered
M

1

15

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...

Margaret answered 26/2, 2009 at 16:48 Comment(0)
S
29

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.

Sr answered 26/2, 2009 at 16:54 Comment(5)
+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.Funest
@Bruno A core language like C++?Margaret
I think the point about making an incorrect/unnecessary 'is-a' relationship is a good point.Hypothesis
The mentioned "framework" (Qi4j) by the OP, is now Apache Zest.Mysticism
And what are the downsides of the "is-a" relationship we are trying to avoid through mixins?Gerdes

© 2022 - 2024 — McMap. All rights reserved.