vote up 5 vote down star
1

Are mixins considered a design pattern? Structural?

flag

46% accept rate
Considered by who? I don't think there's an official list of design patterns. – David Thornley Feb 12 at 21:23

3 Answers

vote up 2 vote down

Yes, it is in Ruby.

Design Patterns in Ruby

link|flag
vote up 2 vote down

Yes, it is in D.

"A design pattern is a general reusable solution to a commonly occurring problem in software design" -- Wikipedia

D is compiled to machine code and with the use of mixins you can use it to make templates even more useful than they are in something like C++.

http://www.digitalmars.com/d/1.0/template-mixin.html

link|flag
vote up 1 vote down

They're a language feature. A "pattern" is different from a feature, in that it resolves a set of forces that may influence a situation in contradictory ways. Features, by their presence or absence, tend to create the forces that patterns resolve. Many design patterns (Double Dispatch is a good example) came about to work around language limitations (in this case method dispatching on a single argument).

link|flag
Not in .NET. It's more like a pattern. – 4thSpace Feb 12 at 23:10
If you know the answer, why are you asking the question ? ;) – Morendil Feb 12 at 23:46
keyword is "like". That sounds unsure to me. – 4thSpace Feb 13 at 1:19
OK, I guess that answers the above. What will you do different based on whether it's considered a pattern or something else ? – Morendil Feb 13 at 15:10
Looks like we're back to subjectivity so lets leave it where it is. To answer your question - nothing. Would you say mixins are similar to the visitor pattern? And in .NET through extensions - decorators? – 4thSpace Feb 13 at 17:14

Your Answer

Get an OpenID
or

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