Welcome! My preferred idiom or pattern looks like this,
package Widget;
use strict;
use warnings;
# generic constructor, allows for any keys to be passed like,
# my $widget = Widget->new(field1 => "value 1", field2 => "value 2", e
+tc => "etc...");
sub new {
my ($pkg, %self) = @_;
# can validate parameters here... (I like Validate::Tiny)
# technically it's a "package", also the 2nd argument to
# bless is a string, literally just the "package" name ('Widget')
return bless \%self, $pkg;
}
1; #<-- note
I highly recommend looking at the following:
My standard advice is to stay away from any OO perl systems that promise the m00n until you understand how Perl makes all this happen. Conway's, Object Orient Perl is a must peruse.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.