{2} = "two"; $hash->{3} = "th-6ren">
gpt4 book ai didi

perl - 如何引用 Perl 中的特定哈希值?

转载 作者:行者123 更新时间:2023-12-04 16:56:38 25 4
gpt4 key购买 nike

如何创建对特定哈希键中值的引用。我尝试了以下但 $$foo 是空的。任何帮助深表感谢。

$hash->{1} = "one";
$hash->{2} = "two";
$hash->{3} = "three";

$foo = \${$hash->{1}};
$hash->{1} = "ONE";

#I want "MONEY: ONE";
print "MONEY: $$foo\n";

最佳答案

use strict;
use warnings;
my $hash;

$hash->{1} = "one";
$hash->{2} = "two";
$hash->{3} = "three";

my $foo = \$hash->{1};
$hash->{1} = "ONE";
print "MONEY: $$foo\n";

关于perl - 如何引用 Perl 中的特定哈希值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2513091/

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