Perl 哈希引用

发布于 2024-12-20 20:37:36 字数 281 浏览 0 评论 0原文

所以我试图编写一个子例程,该子例程采用散列参数并向其添加几个键值对(通过引用)。到目前为止,我已经得到了这个:

addParams(\%params);

sub addParams
{
    my(%params) = %{$_[0]}; #First argument (as a hash)

    $params{"test"} = "testing";
}

但由于某种原因,它似乎没有添加“测试”键。我是 Perl 新手,但这不是通过引用传递哈希的方式吗?预先感谢。

so I'm trying to write a subroutine that takes a hash parameter and adds a couple key-value pairs to it (by reference). So far, I've got this:

addParams(\%params);

sub addParams
{
    my(%params) = %{$_[0]}; #First argument (as a hash)

    $params{"test"} = "testing";
}

But for some reason, It doesn't seem to add the 'test' key. I am new to Perl, but isn't this how you pass a hash by reference? Thanks beforehand.

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

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

发布评论

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

评论(1

牵你的手,一向走下去 2024-12-27 20:37:36

您可以使用 hash-ref 而不取消引用它:

addParams(\%params);

sub addParams
{
    my $params = shift;

    $params->{"test"} = "testing";
}

编辑:

为了解决代码问题,当您这样做时:

my(%params) = %{$_[0]};

您实际上是在使用 %{...} 复制 ref 指向的内容。您可以通过一个分解的示例看到这一点(没有函数,相同的功能):

my %hash = ( "foo" => "foo" );
my %copy = %{ \%hash };

$hash{"bar"} = "bar";
$copy{"baz"} = "baz";

print Dumper( \%hash );
print Dumper( \%copy );

运行:

$ ./test.pl
$VAR1 = {
          'bar' => 'bar',
          'foo' => 'foo'
        };
$VAR1 = {
          'baz' => 'baz',
          'foo' => 'foo'
        };

两个散列都有原始的 'foo =>; foo',但现在每个都有不同的 bar/baz。

You can use the hash-ref without de-referencing it:

addParams(\%params);

sub addParams
{
    my $params = shift;

    $params->{"test"} = "testing";
}

EDIT:

To address your code's issue, when you do:

my(%params) = %{$_[0]};

You're actually making a copy of what the ref points to with %{...}. You can see this via a broken down example (no function, same functionality):

my %hash = ( "foo" => "foo" );
my %copy = %{ \%hash };

$hash{"bar"} = "bar";
$copy{"baz"} = "baz";

print Dumper( \%hash );
print Dumper( \%copy );

Run:

$ ./test.pl
$VAR1 = {
          'bar' => 'bar',
          'foo' => 'foo'
        };
$VAR1 = {
          'baz' => 'baz',
          'foo' => 'foo'
        };

Both hashes have the original 'foo => foo', but now each have their different bar/baz's.

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