Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: inheritance turns back and bites

by broquaint (Abbot)
on Mar 01, 2004 at 13:30 UTC ( [id://332888]=note: print w/replies, xml ) Need Help??


in reply to inheritance turns back and bites

  1. The $answer object is using its own method instead of SomeData's method
  2. Use Class::MultiMethods, or less elegantly
    sub add { @_ > 2 && return $_[0]->SUPER::add(@_[1 .. $#_]); ... }
  3. Don't use parameter based dispatch in perl ;)
HTH

_________
broquaint

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://332888]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (5)
As of 2024-03-19 08:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found