0

有谁知道如何取消引用散列的散列,以便我可以在我的子例程中使用它。如您所见,我无法在我的子例程中访问我的 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。谢谢

4

1 回答 1

3

访问散列元素的语法是$hash{KEY},不是%hash{KEY}

my %HoH = %{$HoH_ref};
my $variable = $HoH{$foo}{name};
               ^
               |

但是复制整个哈希是愚蠢的。利用

my $variable = $HoH_ref->{$foo}{name};
于 2013-02-21T05:03:17.983 回答