http://www.perlmonks.org?node_id=222113


in reply to Re: Class::InsideOut - yet another riff on inside out objects.
in thread Class::InsideOut - yet another riff on inside out objects.

First off multiple code inheritance is supported any way you do OO in Perl.

As far as this is concerned it is basically Abigail's approach and yes, it supports multiple data inheritance flawlessly. In contrast, that's anywhere from difficult to an outright pain with the traditional hashref based approach.

Makeshifts last the longest.

  • Comment on Re^2: Class::InsideOut - yet another riff on inside out objects.

Replies are listed 'Best First'.
Re^3: Class::InsideOut - yet another riff on inside out objects.
by adrianh (Chancellor) on Dec 28, 2002 at 12:24 UTC
    First off multiple code inheritance is supported any way you do OO in Perl.

    I'm being niggly - but this isn't always true. It is possible to implement OO models in perl (e.g. Class::ArrayObjects) that do not support MI.