Next | February 2001 | Slide #6 |
Objects belong to Classes
Objects in the same class have the same methods
Also usually the same internal structure
In Perl, a class is a package
The methods are subroutines in that package
$object->method(...);
This calls the method subroutine in $object's class
ref $object returns the object's class
Next | ![]() |
Copyright © 2001 M-J. Dominus |