vote up -1 vote down star
3

What is the difference between package, module and class in object oriented Perl?

flag

2  
Before you ask these sorts of questions, try reading the Perl documentation first. If you don't understand what you're reading, ask questions about that. – brian d foy Jul 17 at 17:57
What makes you so certain he hadn't RTFM? – spoulson Jul 17 at 18:03
3  
@spoulson: look at his question history. This isn't a one-off. – brian d foy Jul 17 at 18:31
2  
Plus the Perl documentation covers almost everything you could ever want to know about Perl. – Brad Gilbert Jul 17 at 21:14
@bryan d foy: most of his/her questions make good faq entries, though. – ysth Jul 18 at 2:45
show 2 more comments

2 Answers

vote up 12 vote down check

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:

package SomePackage;

sub some_subroutine { ... } # really SomePackage::some_subroutine

You load the module to get access to the package:

use SomePackage; # read and compile the module file

SomePackage::some_subroutine( ... );

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:

package SomeClass;

sub class_method { my( $class, @args ) = @_; ... }
sub instance_method { my( $self, @args ) = @_; ... }

Since the class is just a package like any other package, and probably lives in a module, you access it the same way with use:

 use SomeClass;

 my $i = SomeClass->class_method( ... );

The OO arrow syntax does some special stuff to let the some_method subroutine know that it's being called as a method. Perl puts the referent (the SomeClass in this case) as the first argument. Additionally, when using the OO syntax, Perl knows to use its inheritance features.

Methods called with '->' get the referent as the first parameter to the method, so this call:

  SomeClass->new('world');

is syntactically the if you had called it with the class name as the first parameter:

  SomeClass::new( 'SomeClass' ,'world'); # no inheritance this way

That works the same for objects too. When an object is the referent:

my $i = SomeClass->new(); 
$i->bar( 'world');

the object is the first parameter as the method:

SomeClass::bar($i, 'world');
link|flag
That's a pretty roundabout way of saying that Perl < 6 doesn't have classes ;-) – Manni Jul 17 at 15:22
4  
Packages aren't scopes. They are lexically scoped, but don't define a scope. – brian d foy Jul 17 at 17:29
3  
Perl doesn't have classes. Perl's OOP model uses references, subroutines, and packages to do what people expect classes to do, but there's no thing that is a class. You don't have class data for that reason, and have to fake it with one package per module with lexical variables in the file-scope. – brian d foy Jul 17 at 17:38
3  
Perl classes don't need to have a constructor. You only need that to create instances, which you don't have to do. – brian d foy Jul 17 at 17:54
1  
@brian d foy: it's clearer to say: the notion of current package is lexically scoped, but packages are not. – ysth Jul 18 at 2:48
show 5 more comments
vote up 9 vote down

Perl doesn't have classes. It has namespaces that you change with package. For the complete details of Perl OOP, see Intermediate Perl or Object Oriented Perl. You can also see the perltoot and perlboot documentation. In short, Perl fakes what people expect "real" classes to be with packages, normal subroutines, and references.

A module is a distributable piece of code contained in a file. See perlmod.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.