Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

inheritance turns back and bites (for real this time)

by dada (Chaplain)
on Mar 02, 2004 at 15:53 UTC ( [id://333287]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    @_ > 2 && return $_[0]->SUPER::add(@_[1..$#_]);
    
  2. or download this
    sub add {
        # check if the Big Boss is calling us...
    ...
        die "not a number" unless $value =~ /^\d+$/;
        $$self += $value;
    }
    
  3. or download this
    add($duration)
    
  4. or download this
    add(duration => $duration)
    
  5. or download this
    return $self->SUPER::add(duration=>$duration);
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://333287]
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 11:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found