NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
use Moose (Score:1)
Well, you could duplicate all of this functionality and require no MI at all using Moose and the Class::MOP meta level (the only forced inheritance being Moose::Object, but even that is optional). This all too common abuse of inheritance was one of the main reasons I wrote Moose the way I did. Having the meta layer allows you to add behavior to classes which belong with the class and not with any object instances created by the class (your classic OO "seperation of concerns"). Some of this behavior could e
Re: (Score:2)
Heh. Point taken :)
It's also worth noting that two of those classes provide their own constructor. Hmm, which should I use? Can I use both? Must I use both? All the more reason to provide that functionality without inheritance.
Speaking of Moose (which I really like, though I've yet to have used it in a production environment, how's it's performance coming along?
Re:use Moose (Score:1)
The most basic accessors are actually faster than Class::Accessor, of course if you add type constraints and such it will slow it down some. Object construction can be a little expensive, but if you make your class's immutable then the constructor is inlined and that cost is greatly reduced.
- Stevan
Reply to This
Parent