Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Re: Often Overlooked OO Programming Guidelines

by Ovid (Cardinal)
on Dec 29, 2003 at 21:05 UTC ( [id://317551]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
      package Foo;
                                                                          
    +                                                                     
    +                 
      sub new {
    ...
          my ($self, @args) = @_;
          return map { ++$_ } @args;
      }
    
  2. or download this
      # in package Foo
      sub wonk {
          my $self = shift;
          _fiddle($self, @_);
      }
    
  3. or download this
                                                                          
    +                                                             
      package Bar;
      use Foo;
    ...
          my $self = shift;
          $self->{_foo}->wonk(@_); # delegation!
      }
    

Log In?
Username:
Password:

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

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

    No recent polls found