19.8.2 What is a Perl Class?

Loosely, very loosely, a Perl class is a package. It is associated with run-time objects (often hashes) using the bless function. A class can inherit from other classes using the special list @ISA (read ``is a''). When ClassA is a ClassB, all of the our symbols of ClassB are automatically made known to ClassA.



Copyright © 2008-05-09 by Tak Auyeung