Tagged Questions
16
votes
2answers
2k views
Mixins vs. Traits
What is the difference between Mixins and Traits?
According to Wikipedia, Ruby Modules are sort of like traits. How so?
6
votes
2answers
3k views
Mixing Multiple Traits in Scala
Quick Note: Examples from this tutorial.
Suppose I have the following Traits: Student, Worker, Underpaid, Young
How could I declare a class (not instance) CollegeStudent with all these traits?
...
3
votes
6answers
2k views
java traits or mixins pattern?
Is there a way to emulate mixins or traits in java? basically, I need a way to do multiple inheritance so I can add common business logic to several classes
2
votes
1answer
97 views
In Scala how can I advise my own methods?
I want to do this:
trait Renderable {
def render: String
}
trait Parens extends Renderable {
abstract override def render = "(" + super.render + ")"
}
object Foo extends Renderable with ...
2
votes
2answers
304 views
Does Objective-C support traits/mixins?
Are there any techniques for emulating traits or mixins in Objective-C?
In Scala, for example, I can do something like this:
trait ControllerWithData {
def loadData = ...
def reloadData = ...
...
2
votes
2answers
822 views
Mixin or Trait implementation in AS3?
I'm looking for ideas on how to implement a Mixin/Trait style system in AS3.
I want to be able to compose a number of classes together into a single object. Of course this is not a language level ...
0
votes
1answer
127 views
What do you call an object level equivalent of Mixin/Traits system, is there a Pattern name for it?
I previously asked about what Mixins were, and have begun to get the gist of what the pattern means. But it got me wondering if there is a common pattern name for doing something like Mixins at an ...