$file-6ren">
gpt4 book ai didi

perl - 将 'shift' 分配给变量是什么意思?

转载 作者:行者123 更新时间:2023-12-03 11:47:15 26 4
gpt4 key购买 nike

例子:

use strict;
my $file = shift;

open(IN, $file) || die "Unable to open $file\n";
open(OUT, ">$file.$$") or die $!;
my $file = shift 是怎么回事?

最佳答案

如果在主程序中使用,会shift (删除并返回)来自 @ARGV 的第一个值, 程序的参数列表。如果在子程序中使用,它将从 @_ 移动第一个值,子的参数列表。见 documentation了解更多信息。

关于perl - 将 'shift' 分配给变量是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7082811/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com