Perl_哈希数组_$hash{$key}[0]

前端之家收集整理的这篇文章主要介绍了Perl_哈希数组_$hash{$key}[0]前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Perl_哈希数组_$hash{$key}[0]

 

my $key="A";
my $two=1;
my $three=2;
my $four=3;
my $five=4;
my $six=5;
my %hash;

$hash{$key}[0]=$two;
$hash{$key}[1]=$three;
$hash{$key}[2]=$four;
$hash{$key}[3]=$five;
$hash{$key}[4]=$six;

print $hash{$key}[0]."\t".$hash{$key}[1]."\t".$hash{$key}[2]."\t".$hash{$key}[3]."\t".$hash{$key}[4]."\n";

猜你在找的Perl相关文章