Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: OO Inheritence

by eric256 (Parson)
on May 26, 2004 at 13:33 UTC ( [id://356567]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    package object;
    use Carp;
    ...
       return $old;
    }    
    1;
    
  2. or download this
    package Car;
    use base object;
    ...
    
    sub readonly { qw/Wheels/ };                 
    1;
    
  3. or download this
    package Bike;
    use base object;
    ...
    
    sub readonly { qw/Wheels Passengers/ };
    1;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (4)
As of 2024-04-19 13:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found