gpt4 book ai didi

perl 加入数组引用

转载 作者:行者123 更新时间:2023-12-04 09:50:16 28 4
gpt4 key购买 nike

我是 perl 的新手。

我正在尝试将 join 与数组引用一起使用,但它不起作用。

这是我的代码。

my $arr = {
'items' => ('home', 'chair', 'table')
};

my $output = join(',', $arr->{'items'});

print $output;

它正在打印
table

代替
home,chair,table

有人可以在这方面帮助我吗?

最佳答案

在 Perl 中,括号不创建数组。他们只整理优先级。哈希引用

{ 'items' => ('home', 'chair', 'table') }

是相同的
{ 'items' => 'home', 'chair' => 'table' }

如果要将数组放入散列,则需要使用 arrayref,您可以使用 [ ... ] 创建它:
my $hash = { 'items' => ['home', 'chair', 'table'] }

现在如果你运行你的代码,你会得到类似的东西
ARRAY(0x1234567)

作为输出。这是打印出引用的方式。我们需要取消引用它才能加入元素。我们可以使用 @{ ... } 数组解引用运算符来实现。然后:
print join(',', @{ $hash->{items} }), "\n";

要了解有关 Perl 中的引用和复杂数据结构的更多信息,请阅读
  • perlreftut 然后是
  • perldsc
  • 关于perl 加入数组引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18870557/

    28 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com