程式 my $aaa = {}; # 宣告為HASH $aaa->{'b'} = 3; # 丟第一個值到HASH push @{$aaa->{'a'}} , 1; # @{} push 進去成為ARRAY push @{$aaa->{'a'}} ...
確定! 回上一頁