I would say in general, for reasons that are independent of performance, a lexical "my" variable is preferred over a package level "our" variable. Also besides scoping issues, a "my" variable is faster than a "local" variable. A shift is very slightly faster than a
"my $var = @_;"( missed parens! oops..(my $var)= @_;) when the sub has one arg passed to it. But in this case, I don't see how it could make much difference.
If you are going to do some benchmarking, then I would suggest this code:
print_array2 (\@foo);
sub print_array2
{
my $array_ref = shift;
print join ("\n", @$array_ref), "\n";
}
I am curious as what you are doing as I've never seen a Perl program that was limited by speed of output (much more problematic is processing of the input data!). Print like all I/O is an expensive operation and time to do it usually dwarfs any calculation required to get the thing to print formatted. I would at least suggest adding the above code into your benchmarking - it will run very quickly.Of course, you can also try:
sub print_array2
{
my $array_ref = shift;
foreach (@$array_ref))
{
print "$_\n";
}
}
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.