Do what you would in C++: multiple inheritance (into a subclass). A mixin class is really just a class providing behaviour. It lets you add particular methods to an existing class, without messing about with that class.

An example should make things clear...

Say we have (unrelated) classes Foo and Bar, each with a method val with similar semantics:
package Foo; sub new { my ($class) = @_; return bless [], $class; } sub val { my $self = shift; $self->[0] = $_[0] if @_; "Foo($self->[0])"; } package Bar; sub new { my ($class) = @_; return bless { val => 'nothing' }, $class; } sub val { my $self = shift; $self->{val} = $_[0] if @_; "Bar($self->{val})"; }
We'd like to have a method that prints the val, but we don't want to touch our 2 classes (maybe they're not our responsibility, or maybe we also need them unadorned, or whatever... that's why we want a mixin!). Here's the mixin:
# Something to mixin package Printer; sub print { my $self = shift; my $val = $self->val; print "Value is $val\n"; }
If we manage to get a Foo or a Bar to execute Printer::print, we get our desired behaviour.

Multiple inheritance to the rescue! Define Foos that are also Printers...

package Foo2; use vars '@ISA'; @ISA = qw(Foo Printer); package Bar2; use vars '@ISA'; @ISA = qw(Bar Printer);
Use them as you'd expect:
package main; my $x = new Foo2; my $y = new Bar2; $x->val(17); $y->val('xyzzy'); $x->print; $y->print;

Hope this helps...


In reply to Re: Best way to do Mixin Class by ariels
in thread Best way to do Mixin Class by jcupp

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.