16
votes
8answers
725 views
What is a Mixin, and why are they useful?
In "Programming Python", Mark Lutz mentions "mixins". I'm from a C/C++/C# background, and I've not heard the term before. What is a mixin?
Reading between the lines of this example (which I've …
6
votes
4answers
371 views
What are some good examples of Mixins and or Traits?
I was reading up on Ruby, and learned about its mixins pattern, but couldn't think of many useful mixin functionality (because I'm not used to thinking that way most likely). So I was wondering what …
5
votes
3answers
255 views
Is mixin considered a design pattern?
Are mixins considered a design pattern? Structural?
3
votes
4answers
189 views
ruby inheritance vs mixins
In Ruby, since you can include multiple mixins but only extend one class, it seems like mixins would be preferred over inheritance.
My question: if you're writing code which must be extended/included …
3
votes
3answers
114 views
Objective-C category compared to Mixins
Is the concept of the Objective-C categories in anyway similar to the concept of mixins? If so: what are the similarities? In not: what are the differences?
3
votes
2answers
154 views
How do I write a hygienic Ruby mixin?
Say I'm writing a mixin module that adds functionality to a third-party class. Obviously some of the methods and instance variables I want to make accessible to the third-party class and its clients. …
2
votes
1answer
45 views
Problem with mixins in a MooseX::NonMoose class
Consider the following:
package MyApp::CGI;
use Moose;
use MooseX::NonMoose;
use Data::Dumper;
extends 'CGI::Application';
BEGIN {
print "begin isa = " . Dumper \@MyApp::CGI::ISA;
};
print …
2
votes
3answers
226 views
Why does DataMapper use mixins vs inheritance?
So I'm just curious about this:
DataMapper uses a mixin for its Models
class Post
include DataMapper::Resource
While active-record uses inheritance
class Post < ActiveRecord::Base
Does …
2
votes
1answer
246 views
Mixins vs. Traits
What is the difference between Mixins and Traits?
According to Wikipedia, Ruby Modules are sort of like traits. How so?
2
votes
4answers
275 views
Abstract classes vs. interfaces vs. mixins
Could someone please explain to me the differences between abstract classes, interfaces, and mixins? I've used each before in my code but I don't know the technical differences. (And yes, I've …
2
votes
2answers
234 views
What is the difference between an Abstract Class and a Mixin?
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...) …
2
votes
9answers
831 views
Implement Mixin In Java?
Using Java 6, how can I implement a mixin? It is very easy and possible in Ruby. How can I get similar in Java?
2
votes
4answers
730 views
Groovy Mixins?
I'm trying to mix-in a class in my Groovy/Grails app, and I'm using the syntax defined in the docs, but I keep getting an error.
I have a domain class that looks like this:
class Person {
…
2
votes
3answers
443 views
Is it possible to implement mixins in C#?
I've heard that it's possible with extension methods, but I can't quite figure it out myself. I'd like to see a specific example if possible.
Thanks!
1
vote
2answers
244 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?
…
