免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 11860 | 回复: 6
打印 上一主题 下一主题

ARGV、$ARGV、$ARG、@ARGV四者的关系及区别??? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-09-18 16:21 |只看该作者 |倒序浏览
请帮忙解释一下它们之间的关系及区别,谢谢!
@ARGV是传递的脚本的命令行参数。

[ 本帖最后由 gaoquanlong 于 2008-9-18 17:21 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2008-09-18 17:34 |只看该作者

论坛徽章:
0
3 [报告]
发表于 2008-09-18 17:42 |只看该作者
哦。。。搞不懂。。查查。。

[ 本帖最后由 xiaoshengcaicai 于 2008-9-18 18:36 编辑 ]

论坛徽章:
0
4 [报告]
发表于 2008-09-18 17:51 |只看该作者
ARGV [ALL] 特殊的文件句柄,它遍历在 @ARGV 里的所有命令行文件名。通常写成尖角操作符 里的空文件句柄:<>。

$ARGV [ALL] 当使用 <> 或者 readline 操作符从 ARGV 句柄里读取数据的时候,包含当前 文件名。

Perl语言学习(第三版中文版):第二十八章:特殊名字,里边的内容。
我就是不理解这些关系,所以才问的。。。。。。

论坛徽章:
0
5 [报告]
发表于 2008-09-18 18:33 |只看该作者
好拗口啊。。。

ARGV

    [ALL] The special filehandle that iterates over command-line filenames in @ARGV. Usually written as the null filehandle in the angle operator: <>.
$ARGV

    [ALL] Contains the name of the current file when reading from the ARGV handle using the <> or readline operators.
@ARGV

    [ALL] The array containing the command-line arguments intended for the script. Note that $#ARGV is generally the number of arguments minus one, since $ARGV[0] is the first argument, not the command name; use scalar @ARGV for the number of program arguments. See $0 for the program name.


$ARGV跟ARGV都是跟<>钻石操作符有关系的

@ARGV保存了命令行的所有参数


比如 test.pl  1.txt 2.txt

@ARGV  为(1.txt, 2.txt)

程序里如果写
while (<>) {
      print "from file $ARGV  get line:" , $_, "\n";
}

将依次读入1.txt, 2.txt, 并依次读入每一行。 $ARGV表示当前正在读取的文件名, ARGV表示当前正在读取的文件句柄。

[ 本帖最后由 xiaoshengcaicai 于 2008-9-18 18:46 编辑 ]

论坛徽章:
0
6 [报告]
发表于 2014-04-23 14:12 |只看该作者
xiaoshengcaicai 发表于 2008-09-18 18:33
好拗口啊。。。

回答的非常不错,解决了我的疑问

论坛徽章:
145
技术图书徽章
日期:2013-10-01 15:32:13戌狗
日期:2013-10-25 13:31:35金牛座
日期:2013-11-04 16:22:07子鼠
日期:2013-11-18 18:48:57白羊座
日期:2013-11-29 10:09:11狮子座
日期:2013-12-12 09:57:42白羊座
日期:2013-12-24 16:24:46辰龙
日期:2014-01-08 15:26:12技术图书徽章
日期:2014-01-17 13:24:40巳蛇
日期:2014-02-18 14:32:59未羊
日期:2014-02-20 14:12:13白羊座
日期:2014-02-26 12:06:59
7 [报告]
发表于 2014-04-23 14:49 |只看该作者
回复 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.


您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP