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

Re^5: Tutorial: Introduction to Object-Oriented Programming

by fruiture (Curate)
on Dec 12, 2002 at 21:12 UTC ( [id://219426]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub some_method {
        my $self = shift;
        $self->{'_very_internal_flag'} = 1;
        #...
    }
    
  2. or download this
    package OO; # RFC
    use strict;
    ...
    }
    
    1;
    
  3. or download this
    package Car;
    use base 'OO';
    ...
           $self->oo_get( 'color' );
        }
    }
    

Log In?
Username:
Password:

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

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

    No recent polls found