http://qs1969.pair.com?node_id=714528


in reply to Re: Object Oriented packages - classes and subroutines
in thread Object Oriented packages - classes and subroutines

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 them
This 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.

Replies are listed 'Best First'.
Re^3: Object Oriented packages - classes and subroutines
by jplindstrom (Monsignor) on Oct 06, 2008 at 14:22 UTC
    Sorry, I don't get it. Call it like this:

    my $whatever = My::Class->whatever();

    Is it the verbosity of the class name that bothers you or something else?

    /J

      Yes, it's the totally unnecessary verbosity that's extremely annoying to get rid of. That doesn't bother you?