Humm, don't forget that Perl uses a special variable @_ for the arguments. What you can't forget is that this array @_ is global, but it's elements will change for each call. So, the performance of @_ will be similar to a global variable, but will work as a stack, so, will work for multiple calls of the same sub and recursivelly.
This code will show that:
sub test1 {
++$_[0] ;
print "T1 [@_]\n" ;
test2($_[0]) ;
}
sub test2 {
++$_[0] ;
print "T2 [@_]\n" ;
test3($_[0]) ;
}
sub test3 {
++$_[0] ;
print "T3 [@_]\n" ;
print "end\n" ;
}
my $n = 10 ;
test1($n) ;
print "N: $n\n" ;
output:
T1 [11]
T2 [12]
T3 [13]
end
N: 13
And forget the use of a global variable for any type of code and start learning OO. Take a look at
perlobj,
perltoot,
perlboot and
perltooc.
For Object Orientation (OO) I use Class::HPLOO.
Graciliano M. P.
"Creativity is the expression of the liberty".
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.