Perl has OOP features, but they are somewhat rarely used. How do you create and use Perl objects with methods and properties?
|
|
You should definitely take a look at
Moose gives you (among other things) a constructor, accessor methods, and type checking for free! So in your code you can:
A good starting point is If you just need the basic stuff you can also use |
||||||||||
|
|
|
Moose, definitely.
Immediately, you have for free a new() method, and accessor methods for the attributes you just defined with 'has'. So, you can say:
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. |
||
|
|
|
|
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. |
||
|
|
|
|
The official tutorial on the CPAN site is good. There's also a good article called Camel POOP at CodeProject. |
||
|
|
|
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. |
|||
|
|
|
|
Here's a guide: http://www.tutorialspoint.com/perl/perl_oo_perl.htm Edit: Good point, I'm removing the copied code. |
|||
|
|
|
|
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. |
||
|
|
