hashnbsp专题

Hownbsp;tonbsp;passnbsp;anbsp;hashnbsp;tonbsp;anbsp;subrouti…

How to pass a hash to a subroutine? #!/usr/bin/perluse strict;my %MyHash;# ...# Call subroutineMySubroutine( %MyHash );# ...sub MySubroutine {   my %ThisHash = @_;   # ...}