vote up 6 vote down star
1

Perl has OOP features, but they are somewhat rarely used. How do you create and use Perl objects with methods and properties?

flag

79% accept rate

7 Answers

vote up 19 vote down check

You should definitely take a look at Moose.

package Point;
use Moose; # automatically turns on strict and warnings

has 'x' => (is => 'rw', isa => 'Int');
has 'y' => (is => 'rw', isa => 'Int');

sub clear {
    my $self = shift;
    $self->x(0);
    $self->y(0);
}

Moose gives you (among other things) a constructor, accessor methods, and type checking for free!

So in your code you can:

my $p = Point->new({x=>10 , y=>20}); # Free constructor
$p->x(15);     # Free setter
print $p->x(); # Free getter
$p->clear();
$p->x(15.5);   # FAILS! Free type check.

A good starting point is Moose::Manual and Moose::Cookbook

If you just need the basic stuff you can also use Mouse which is not as complete, but without most of the compile time penalty.

link|flag
or Mouse if you need just simple features of Moose – Alexandr Ciornii Oct 26 '08 at 23:12
is there any good tutorial for totally newbies on Moose? thanks – melaos Dec 22 '08 at 14:35
@Alexandr,thanks updated the answer. @melaos I have edited the answer to provide links – Pat Dec 29 '08 at 10:57
Cleaned up some of the markdown links, and changed Moose::Intro to Moose::Cookbook. – Brad Gilbert Jul 15 at 4:49
The best intro to Moose I have seen is on Catalyzed.org: catalyzed.org/2009/06/… Even as an experienced Perl programmer, I avoided Moose for a while because it seemed confusing. – Drew Stephens Sep 18 at 0:12
vote up 6 vote down

Moose, definitely.

package Person;
use Moose;
has age => ( isa => Int, is => 'rw'); 
has name => ( isa => Str, is => 'rw'); 
1;

Immediately, you have for free a new() method, and accessor methods for the attributes you just defined with 'has'. So, you can say:

my $person = Person->new();
$person->age(34);
$person->name('Mike');
print $person->name, "\n";

and so on. Not only that, but your accessor methods come type-checked for free (and you can define your own types as well as the standard ones). Plus you get 'extends' for subclassing, 'with' for roles/traits, and all manner of other great stuff that allows you to get on with the real job of writing good robust maintainable OO code.

TMTOWTDI, but this one works.

link|flag
vote up 4 vote down

Currently I use Object::InsideOut whenever I want objects, its quite nice and will give you a lot of features over standard blessed hash objects. Having said that, if I was starting a new project I would seriously look at Moose.

While it is good to read the official PERL documentation, I would NOT recommend trying to role your own object framework, or building objects using hashes, its far to tempting to take the easy road and "peak" directly into the objects "private" variables completely breaking encapsulation, this will come back to bite you when you want to refactor the object.

link|flag
vote up 2 vote down

The official tutorial on the CPAN site is good.

There's also a good article called Camel POOP at CodeProject.

link|flag
Note that all the perldoc tutorials are also available at the commandline, if you have a normal Perl installation: perldoc perltoot for this one. (See also perldoc perlboot for more fun with objects in Perl.) – Telemachus Jun 27 at 15:13
vote up 2 vote down

Perl objects are NOT just blessed hashes. They are blessed REFERENCES. They can be (and most often are) blessed hash references, but they could just as easily be blessed scalar or array references.

link|flag
vote up 0 vote down

Here's a guide: http://www.tutorialspoint.com/perl/perl_oo_perl.htm

Edit: Good point, I'm removing the copied code.

link|flag
vote up 0 vote down

On one foot, each class is a package; you establish (multiple, if desired) inheritance by setting the package variable @ISA (preferably at compile time); you create an object from an existing piece of data (often, but not always, an anonymous hash used to store instance variables) with bless(REFERENCE [, CLASSNAME]); you call object methods like $obj->methodname(@ARGS) and class methods like "CLASSNAME"->methodname(@ARGS). Multiple inheritance method resolution order can be altered using mro.

Because this is somewhat minimalistic and doesn't force encapsulation, there are many different modules that provide more or different functionality.

link|flag

Your Answer

Get an OpenID
or

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