![]() |
|
Perl Monk, Perl Meditation | |
PerlMonks |
Re^2: Object Oriented packages - classes and subroutinesby educated_foo (Vicar) |
on Sep 30, 2008 at 11:55 UTC ( #714528=note: print w/replies, xml ) | Need Help?? |
If a routine is clearly not related to the object instance ($self), make it a class method (shift off $class, call the method like this: My::Class->whatever() ) instead, because.. You almost certainly will want to override one of themThis is actually really annoying as an interface, because it means that whatever can't be exported. And in my experience, for every time you want to override a class method/function, there are hundreds of times you just want to call one.
In Section
Seekers of Perl Wisdom
|
|