在Perl中,可以使用其名称引用数组吗?

时间:2011-10-27 20:02:17

标签: perl symbolic-references

我是Perl的新手,我知道你可以按名称调用函数,如下所示: &$functionName();。但是,我想按名称使用数组。这可能吗?

长代码:

sub print_species_names {
    my $species = shift(@_);
    my @cats = ("Jeffry", "Owen");
    my @dogs = ("Duke", "Lassie");

    switch ($species) {
        case "cats" {
            foreach (@cats) {
                print $_ . "\n";
            }
        }
        case "dogs" {
            foreach (@dogs) {
                print $_ . "\n";
            }
        }
    }
}

寻找类似于此的更短代码:

sub print_species_names {
    my $species = shift(@_);
    my @cats = ("Jeffry", "Owen");
    my @dogs = ("Duke", "Lassie");

    foreach (@<$species>) {
        print $_ . "\n";
    }
}

3 个答案:

答案 0 :(得分:15)

可能?是。推荐的? 即可。通常,使用符号引用是不好的做法。相反,使用哈希来保存数组。这样你可以按名称查找它们:

sub print_species_names {
    my $species = shift;
    my %animals = (
        cats => [qw(Jeffry Owen)],
        dogs => [qw(Duke Lassie)],
    );
    if (my $array = $animals{$species}) {
        print "$_\n" for @$array
    }
    else {
        die "species '$species' not found"
    }
}

如果你想减少更多,你可以用:

替换if / else块
    print "$_\n" for @{ $animals{$species}
        or die "species $species not found" };

答案 1 :(得分:4)

您可以通过使用数组引用的哈希来实现某些目标:

%hash = ( 'cats' => [ "Jeffry", "Owen"],
          'dogs' => [ "Duke", "Lassie" ] );

$arrayRef = $hash{cats};

答案 2 :(得分:0)

你也可以在这里使用eval:

foreach (eval("@$species")) {
        print $_ . "\n";
    }

我应该明确表示你需要关闭严格的参考才能使这个工作。因此,使用“nostrict”围绕代码并使用“严格”工作。

这在perl中被称为软引用。