Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Extending parent object method?

by Syndaryl (Initiate)
on Mar 09, 2012 at 19:31 UTC ( [id://958782]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
       sub new {
          my $proto = shift;
          my $class = ref($proto) || $proto;
    ...
          # do other stuff here for the child object...
          return $self;
       }
    
  2. or download this
       sub reset {
          my $self = shift;
          my $class = ref($self) || $self;
    ...
          
          return $self;
       }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (4)
As of 2024-03-29 12:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found