What is the difference between package, module and class in object oriented Perl?
|
3
|
|||||||||||||||||
|
|
|
Modules are a single file, a .pm file that provides code. That could be no packages, a single package, or more than one package. A module doesn't really care what is in it, so it can be code that inserts itself into the same namespace, a more-traditional set of subroutines in a library, or define Perl's idea of a class. A package, also known as a namespace, contains its own variables and subroutines. It's a way of segregating different parts of your program. You create the package and put your code into it:
You load the module to get access to the package:
A Perl class is a package and its associated behavior. The methods in a class are just normal subroutines, although when we treat the subroutines as methods, the first parameter is the thing (a package name or object, also known as the referent) that called method:
Since the class is just a package like any other package, and probably lives in a module, you access it the same way with
The OO arrow syntax does some special stuff to let the Methods called with '->' get the referent as the first parameter to the method, so this call:
is syntactically the if you had called it with the class name as the first parameter:
That works the same for objects too. When an object is the referent:
the object is the first parameter as the method:
|
||||||||||||||||||
|
|
|
Perl doesn't have classes. It has namespaces that you change with A module is a distributable piece of code contained in a file. See perlmod. |
|||
|
|
