为什么"不是ARRAY参考"错误?

San*_*ing 6 arrays perl

我有这个脚本

#!/usr/bin/perl

use strict;
use warnings;

use yy;

my $data = [
    ["aax", "ert", "ddd"],
    ["asx", "eer", "kkk"],
    ["xkk", "fff", "lll"],
    ["xxj", "vtt", "lle"],
    ];

use Test::More tests => 4;

is(yy::type1_to_type2(\$data, 'aax'), 'ert');
is(yy::type1_to_type3(\$data, 'asx'), 'kkk');
is(yy::type2_to_type3(\$data, 'fff'), 'lll');
is(yy::type3_to_type1(\$data, 'lle'), 'xxj');
Run Code Online (Sandbox Code Playgroud)

它使用这个模块

package yy;

sub typeX_to_typeY {
    my ($x, $y, $data, $str) = @_;

    foreach (@$data) {
    if ($_->[$x - 1] eq $str) {
        return $_->[$y - 1];
    }
    }

    return;
}

sub type1_to_type2 { typeX_to_typeY(1, 2, @_) }
sub type1_to_type3 { typeX_to_typeY(1, 3, @_) }
sub type2_to_type1 { typeX_to_typeY(2, 1, @_) }
sub type2_to_type3 { typeX_to_typeY(2, 3, @_) }
sub type3_to_type1 { typeX_to_typeY(3, 1, @_) }
sub type3_to_type2 { typeX_to_typeY(3, 2, @_) }

1;
Run Code Online (Sandbox Code Playgroud)

并给出了这个错误

Not an ARRAY reference at yy.pm line 6.
# Looks like your test died before it could output anything.
Run Code Online (Sandbox Code Playgroud)

它抱怨的路线是

foreach (@$data) {
Run Code Online (Sandbox Code Playgroud)

这不是传递数组引用的方法吗?

我究竟做错了什么?

a'r*_*a'r 14

您正在创建对引用的引用,因为$data它已经是数组引用 - 首先,它是一个标量,其次您使用方括号来初始化它的值.所以,改变你的使用$data而不是使用\$data.


Eug*_*ash 7

$data = []是对数组的引用.通过使用\$data您创建对标量的引用.
将代码更改为:

is(yy::type1_to_type2($data, 'aax'), 'ert');
...
Run Code Online (Sandbox Code Playgroud)