Hi, All.
I'm just learning Perl.
When is it advisable to use OO Perl instead of non-OO Perl?
My tendency would be to always prefer OO unless the project is just a code snippet of < 10 lines.
TIA
|
1
|
Hi, All. I'm just learning Perl. When is it advisable to use OO Perl instead of non-OO Perl? My tendency would be to always prefer OO unless the project is just a code snippet of < 10 lines. TIA |
|||
|
|
|
|
|
||
|
|
|
|
This question doesn't have that much to do with Perl. The question is "when, given a choice, should I use OO?" That "given a choice" bit is because in some languages (Java, for example), you really don't have any choice. The answer is "when it makes sense". Think about the problem you're trying to solve. Does the problem fit into the OO concepts of classes and object? If it does, great, use OO. Otherwise use some other paradigm. Perl is fairly flexible, and you can easily write procedural, functional, or OO Perl, or even mix them together. Don't get hung up on doing OO because everyone else is. Learn to use the right approach for each task. All of this takes experience and practice, so make sure to try all these approaches out, and maybe even take some smaller problems and solve them in multiple ways to see how each works. |
||
|
|
|
|
There is a good discussion about same subject @ PerlMonks. Having Moose certainly makes it easier to always use OO from the word go. The only real exception is if compilation start-up is an issue (Moose does currently have a compile time overhead). /I3az/ |
||
|
|
|
|
Damian Conway has a passage in Perl Best Practices about this. It is not a rule that you have to follow it, but it is probably better advice that I can give without knowing a lot about what you are doing. Here is the publisher's page if that is a better place to link to the book. |
||
|
|
|
|
I don't think you should measure it by lines of code. You are right, often when you are just writing a simple script OO is probably too much overhead, but I think you should be more flexible regarding the 10 lines aproach. In all cases when you are using OO Perl Rememebr to use Moose (or Mouse) |
||||||||||
|