perl中的$a和$b介绍
perl中的$a和$b介绍
发布时间:2016-12-28 来源:查字典编辑
摘要:即使打开了strict和warnings选项也无妨,下面代码并无错误和警告。复制代码代码如下:#!/usr/bin/perlusestric...

即使打开了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学习
热门perl学习
脚本专栏子分类