perl中的$a和$b介绍
来源:爱站网时间:2021-11-10编辑:网友分享
有关perl中的$a和$b,这两个变量是为sort函数准备的内置变量,所以声明时可以不加 my,这具体的原因是为什么呢,爱站技术小编现在就带大家来解读一下。有兴趣的可以参考一下。
爱站技术小编给大家介绍一下perl中的$a和$b介
即使打开了strict和warnings选项也无妨,下面代码并无错误和警告。
#!/usr/bin/perl
use strict;
use warnings;
sub test {
$a = 1;
$b = 2;
print $a, "\n";
print $b, "\n";
}
test();
1;
下面是perl文档中对这两个变量的解释:
perldoc perlvar
$a
$b Special package variables when using sort(), see "sort" in perlfunc.
Because of this specialness $a and $b don't need to be declared (using use vars, or our()) even when using the "strict 'vars'" pragma. Don't lexicalize them with "my $a" or "my $b" if you want to be able to use them in the sort() comparison block or function.
以上内容就是爱站技术频道小编为大家分享的perl中的$a和$b介绍,看完以上分享之后,大家应该都更了解perl中的$a和$b了吧。