What is the difference between Mixins and Traits?
According to Wikipedia, Ruby Modules are sort of like traits. How so?
|
What is the difference between Mixins and Traits? According to Wikipedia, Ruby Modules are sort of like traits. How so?
| ||||
|
feedback
|
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 (
In mixins the conflicts in composing class
This will call On the other hand while using Traits, composing class has to resolve conflicts.
This code will raise conflict (two definitions of 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. | |||||||||||
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. | |||||
feedback
|