| Next | February 2001 | Slide #12 |
package Person;
sub new {
my ($class) = @_;
my $self = { };
bless $self, $class;
return $self;
}
new is a Constructor because it constructs a new object
Constructors are typically class methods
But not always:
$new_person = $person->copy;
| Next | ![]() |
Copyright © 2001 M-J. Dominus |