in reply to (jeffa) 3Re: My first stab at OO perl...
in thread My first stab at OO perl...
I'm reading through perltoot(1), trying to grok perl's way of doing OO, and it actually recommends doing just what Theseus did. From perltoot:
sub new { my $proto = shift; my $class = ref($proto) || $proto; my $self = {}; $self->{NAME} = undef; $self->{AGE} = undef; $self->{PEERS} = []; bless ($self, $class); return $self; }
So is this only recommended if you plan to allow for inheritance? Or did I miss something?
-Dan
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: (jeffa) 3Re: My first stab at OO perl...
by v_thunder (Scribe) on Jul 17, 2002 at 04:18 UTC | |
by Theseus (Pilgrim) on Jul 17, 2002 at 20:26 UTC |