Perl 对象中的数组数组

发布于 2025-01-07 07:18:19 字数 328 浏览 0 评论 0原文

我正在尝试在 Perl 对象中使用数组的数组,但仍然不明白它是如何工作的。

这是构造函数:

sub new {
  my $class = shift;
  my $self = {};
  $self->{AoA} = [];
  bless($self, $class);
  return $self;
}

这是向 AoA 中插入内容的代码部分:

push (@{$self->{AoA}}[$row], $stuff);

我仍然找不到在构造函数中定义数组数组的任何内容。

I'm trying to use an array of arrays in a Perl object and am still not getting how it works.

Here is the constructor:

sub new {
  my $class = shift;
  my $self = {};
  $self->{AoA} = [];
  bless($self, $class);
  return $self;
}

And here is the part of code which inserts stuff into AoA:

push (@{$self->{AoA}}[$row], $stuff);

I still can't find anything on the way to define an array of arrays in the constructor.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

戏舞 2025-01-14 07:18:19

您不需要在构造函数中定义 AoA - 只需要最顶层的 arrayref 即可。就受祝福的哈希而言,AoA 只是一个数组引用。

你的构造函数是完美的。

要插入,您需要做两件事:

# Make sure the row exists as an arrayref:
$self->{AoA}->[$row] ||= []; # initialize to empty array reference if not there.
# Add to existing row:
push @{ $self->{AoA}->[$row] }, $stuff;

或者,如果您要添加已知索引元素,只需

$self->{AoA}->[$row]->[$column] = $stuff;

执行 push @{$self->{AoA}}[$row] 的问题是您太早取消了数组 1 级别的引用。

You don't need to define AoA in a constructor - merely the topmost arrayref. As far as the blessed hash is concerned, the AoA is merely an arrayref.

Your constructor is perfect.

To insert, you do 2 things:

# Make sure the row exists as an arrayref:
$self->{AoA}->[$row] ||= []; # initialize to empty array reference if not there.
# Add to existing row:
push @{ $self->{AoA}->[$row] }, $stuff;

Or, if you are adding a known-index element, simply

$self->{AoA}->[$row]->[$column] = $stuff;

Your problem with doing push @{$self->{AoA}}[$row] was that you dereferenced the array 1 level too early.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文