what could this line possibly mean?
my $x = shift ;
|
|
|||||||||||||
|
|
|
The confusion here is that it appears shift is not being passed an array as an argument. In fact, it is being passed the "default" array implicitly, which is |
|||
|
|
Perl has built-in docs for every standard function. They're also online. In this case, "perldoc -f shift." |
||
|
|
|
|
The The default array (if one isn't given as a parameter) is So in this case |
|||
|
|
|
This is usually an idiom for: $x is a local variable assigned to the first parameter passed to the subroutine, although.
is probably clearer (and it doesn't modify the argument list). |
|||
|
|
|
|
If you are in a subroutine this line will shift on @_ (the params that are passed in). So $x would be the first item popped from the @_ array. So usually you would see $x = shift if @_; |
||
|
|
|
In Perl, many methods use the default variables (
As pointed out by PullMonkey earlier, within a subroutine, |
||
|
|
|
|
in a layman's language,from a very highlevel view, shift is taking the first element of an array (the leftmost part), while the opposite is pop which is taking the last element of array (the rightmost part). my @array1=(5,6,7,8,9); my $x = shift @array1; print "$x\n"; # 5 print "@array1\n"; # 6 7 8 9 |
||
|
|