perl中的$a和$b介紹
更新時間:2013年02月09日 23:47:22 作者:
有關(guān)perl中的$a和$b,這兩個變量是為sort函數(shù)準備的內(nèi)置變量,所以聲明時可以不加 my
即使打開了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.
相關(guān)文章
Perl使用File::Basename獲取文件擴展名的代碼
本文為大家介紹的這個例子,實現(xiàn)了獲取/home/topgkw中所有文件后綴,其中目錄返回空值2013-02-02
perl之print,printf,sprintf使用案例詳解
這篇文章主要介紹了perl之print,printf,sprintf使用案例詳解,本篇文章通過簡要的案例,講解了該項技術(shù)的了解與使用,以下就是詳細內(nèi)容,需要的朋友可以參考下2021-09-09

