如何在perl子函数中传递hash

2024年11月15日 13:34
有2个网友回答
网友(1):

sub test { my %hash = @_; print "$_ => $hash{$_}$/" foreach keys %hash;}my %h = ( A => 100, B => 200, C => 300 );test(%h);

网友(2):

1
2
3
4
5
6
7
sub test {
my %hash = @_;
print "$_ => $hash{$_}$/" foreach keys %hash;
}

my %h = ( A => 100, B => 200, C => 300 );
test(%h);