0
我已經通過子程序做印刷哈希鍵/值對一個簡單的Perl腳本經過散列子程序
#!/usr/local/bin/perl
#passing hash to a subroutine
sub printhash{
my (%hash) = @_;
foreach my $key (keys %hash){
my $value = $hash{$key};
print "$key : $value\n ";
}
}
%hash = {'name' => 'devendra', 'age' => 21};
printhash(%hash);
預期輸出:
名:德文德拉
年齡:21
輸出:
HASH(0x1be0e78):
它有什麼問題?
值得一提的是,作爲一個optiom – Sobrique