有谁知道如何取消引用散列的散列,以便我可以在我的子例程中使用它。如您所见,我无法在我的子例程中访问我的 Hash of Hashes 数据结构。
my $HoH_ref = \%HoH; # reference the hash of hashes
for(@sorted) {
print join("\t", $_, get_num($_, $HoH_ref))
}
sub get_num {
my ($foo) = shift;
my $HoH_ref = shift;
my %HoH = %{$HoH_ref}; # dereference the hash of hashes
my $variable = %HoH{$foo}{'name'};
# do stuff
return;
}
我在倒数第二行%HoH{$protein}{'degree'}
附近出现语法错误,%HoH{
并且哈希的哈希无法识别$protein
来自%HoH
. 我收到错误消息:Global symbol "$protein" requires explicit package name
。谢谢