Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re^3: why this function call print 9

by SamCG (Hermit)
on Feb 09, 2006 at 18:46 UTC ( [id://529159]=note: print w/replies, xml ) Need Help??


in reply to Re^2: why this function call print 9
in thread why this function call print 9

When you say, "I expect it to print nothing", I'm guessing you're thinking your first element is undefined? So you're thinking that the shift was done twice, once for what you think is an undefined element and once for an element with the value.

This interpretation is incorrect: you're passing a 4-element array to your function, and it's as if the @3 didn't exist at all. There is no "implicit shift" going on, unless you think of the my ($a)=@_; as a "shift". If you merge two arrays, and one has no elements, you don't end up with an undefined element as a placeholder for the empty array (I don't know if I can put it more clearly).
sub f1{ my ($zeroelement, $oneelement, $twoelement, $threeelement) =@_; print scalar(@_); ## prints number of elements -->4 ## each element is in the appropriate value, an +d $zeroelement is 9 $cp=1; $LOCAL_CODEPAGE =10; if ($a==1){ $LOCAL_CODEPAGE = $cp; break; } return $LOCAL_CODEPAGE = $a; print "\n"; } @3=(); print "\$LOCAL_CODEPAGE=$LOCAL_CODEPAGE: f1(@3,9,3,4,5): ".f1(@3,9,3,4 +,5)."\n";

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://529159]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (4)
As of 2024-04-25 05:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found