What is the difference between Mixins and Traits?

According to Wikipedia, Ruby Modules are sort of like traits. How so?

link|improve this question

75% accept rate
feedback

2 Answers

up vote 31 down vote accepted
  1. Mixins may contain state, (traditional) traits don't.
  2. Mixins use "implicit conflict resolution", traits use "explicit conflict resolution"
  3. Mixins depends on linearization, traits are flattened.

Lecture about traits

ad 1. In mixins you can define instance variables. Traits do not allow this. The state must be provided by composing class (=class using the traits)

ad 2. There may be the name conflict. Two mixins (MA and MB) or traits (TA and TB) define method with the same definition foo():void.

Mixin MA {
    foo():void {
        print 'hello'
    }
}

Mixin MB {
    foo():void {
        print 'bye'
    }
}

Trait TA {
    foo():void {
        print 'hello'
    }
}

Trait TB {
    foo():void {
        print 'bye'
    }
}

In mixins the conflicts in composing class C mixins MA, MB are resolved implicitly.

Class C mixins MA, MB {
    bar():void {
        foo();
    }
}

This will call foo():void from MA

On the other hand while using Traits, composing class has to resolve conflicts.

Class C mixins TA, TB {
    bar():void {
        foo();
    }
}

This code will raise conflict (two definitions of foo():void).

ad 3. The semantics of a method does not depend of whether it is defined in a trait or in a class that uses the trait.

In other words, it does not matter wheter the class consists of the Traits or the Traits code is "copy - pasted" into the class.

link|improve this answer
1  
+1 I liked your answer a lot. It was concise and described the difference between the two very clearly. Thank you! – rFactor Jun 24 '11 at 13:36
If there were a list of exemplary responses, this would surely be on it. Thank you, jk_. – Reece Aug 25 '11 at 2:14
1  
I know it's a year past date, but for future readers, in ruby it would use the method form the last module that was mixed in, so it would call foo() form MB – rik.vanmechelen Jan 12 at 19:36
feedback

These pages explain the difference in the D Programming language.

http://www.digitalmars.com/d/2.0/mixin.html

http://www.digitalmars.com/d/2.0/traits.html

Mixins in this context are code generated on the fly, and then inserted at that point in code during compilation. Quite handy for simple DSLs.

Traits are compile-time external values (rather than code generated from an external source). The difference is subtle. Mixins add logic, Traits add data such as compile-time type information.

Don't know much about Ruby, but hope this helps somewhat.

link|improve this answer
2  
Mixins and Traits in D are completely different from what the terms mean in Computer Science generally. In D, both are preprocessor primitives for automatic code generation. In other languages, they are inheritance mechanisms. The naming decision in D is unfortunate. – tylerl Feb 24 at 17:36
feedback

Your Answer

 
or
required, but never shown

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