亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

perl中的$a和$b介紹

 更新時(shí)間:2013年02月09日 23:47:22   作者:  
有關(guān)perl中的$a和$b,這兩個(gè)變量是為sort函數(shù)準(zhǔn)備的內(nèi)置變量,所以聲明時(shí)可以不加 my

即使打開了strict和warnings選項(xiàng)也無妨,下面代碼并無錯(cuò)誤和警告。

復(fù)制代碼 代碼如下:

#!/usr/bin/perl
use strict;
use warnings;
sub test {
    $a = 1;
    $b = 2;
    print $a, "\n";
    print $b, "\n";
}
test();
1;


下面是perl文檔中對(duì)這兩個(gè)變量的解釋:

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)文章

最新評(píng)論