I have a class that subclasses a base class with a custom constructor object.
My problem lay in that I want to share an generic init function (_init) called from new that will process common arguments passed to the constructor. Passing the args in @_ is easy to do - i'm just trying to figure out the best way to do it, and I'm unsure of how perl treats @_.
Should I devise a way to reference/de-reference @_ when it is passed/accessed? Is that completely unnecessary? I doubt I will be tossing large amounts of data around, but in the case that I do, I don't want to be needlessly copying variables all over when a simple reference will do.
Perhaps this will explain things better:
package Framework::myPackage ;
sub _init
{
my $this = shift; # shift off the ref in $_[0] so we can access the pa
+rams as @_
my %param = @_;
#or my %param = $@_; # do i want something like that (i know thats not
+ real perl)
}
package MyApp::myPackage ;
sub new
{
...
$this->_init( @_ );
#or $this->_init( \@_ ); #?
}
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.