- 论坛徽章:
- 145
|
回复 1# gaoquanlong
Here is the document
$ perldoc perlvar
NAME
perlvar - Perl predefined variables
...
SPECIAL VARIABLES
The following names have special meaning to Perl. Most punctuation names
have reasonable mnemonics, or analogs in the shells. Nevertheless, if you
wish to use long variable names, you need only say:
use English;
...
General Variables
$ARG
$_ The default input and pattern-searching space. The following pairs
are equivalent:
...
@ARG
@_ Within a subroutine the array @_ contains the parameters passed to
that subroutine. Inside a subroutine, @_ is the default array for
the array operators "push", "pop", "shift", and "unshift".
See perlsub.
...
It's easy to notice the problem in such a short example, but in more
complicated code you are looking for trouble if you don't localize changes
to the special variables.
$ARGV Contains the name of the current file when reading from "<>".
@ARGV The array @ARGV contains the command-line arguments intended for
the script. $#ARGV is generally the number of arguments minus one,
because $ARGV[0] is the first argument, ESC[4mnotESC[0m the program'
s command
name itself. See $0 for the command name.
ARGV The special filehandle that iterates over command-line filenames
in @ARGV. Usually written as the null filehandle in the angle
operator "<>". Note that currently "ARGV" only has its magical
effect within the "<>" operator; elsewhere it is just a plain
filehandle corresponding to the last file opened by "<>". In
particular, passing "\*ARGV" as a parameter to a function that
expects a filehandle may not cause your function to automatically
read the contents of all the files in @ARGV.
|
|