Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

jaa's scratchpad

by jaa (Friar)
on Jun 02, 2004 at 17:23 UTC ( [id://359583]=scratchpad: print w/replies, xml ) Need Help??

Constructor with inheritance
#--------------------------------------- package Parent; 1; sub new { my $class = shift; my $self = {}; _initialise($self,@_); return $self; } sub _initialise { my $self = shift; print "Parent._initiliase(@_)\n"; } #--------------------------------------- package Child; 1; use base qw(Parent); sub new { my $class = shift; my $self = $class->SUPER::new(@_); _initialise($self,@_); return $self; } sub _initialise { my $self = shift; print "Child._initiliase(@_)\n"; }
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (6)
As of 2024-03-28 20:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found