perl常量+多维数组+变量的初始化的例子,有需要的朋友可以参考下。
例1:
#!/bin/perl
use strict;
use warnings;
my $test = "asdf";
print "${test}_test2n";
#constant
use constant {
AAA => "aaa",
BBB=> "bbb",
MIN_TOTAL => 12,
SCORE_PASS => 90,
SCORE_RED => 70,
};
print AAA;
print SCORE_PASS;
#two dimesion arrays
my @steps = (
["aaa", "aaavalue"],
["bbb","bbbvalue"],
["ccc","cccvalue"]
);
print "n";
foreach my $i (0 .. $#steps){
print "$steps[$i][0]:$steps[$i][1]n";
}
例2:
在定义变量时一定要初始化,或者在使用时判断是否defined,很多的时候还需要判断是否为空字符串。 特别是在使用getopt::long或cgi->query获得参数后要检测是否定义,如果么有定义考虑给予默认值。
作者:iTech
出处:http://itech.cnblogs.com/