我寫這個小程序。它編譯但它只是沒有按預期打印數組大小。我的程序有什麼問題?這個短程序有什麼問題?
#!/usr/bin/perl -w
use strict;
use warnings;
my $primaryFeatures
= { foo => [ 'fool', 'food', 'foot' ],
bar => ['barricade'],
};
my $arraysize = $#{$primaryFeatures->{"foo"}}+1;
print $arraysize;
你得到什麼錯誤?它是打印錯誤的結果還是你收到警告或錯誤? – 2012-02-15 21:20:49