Perl 哈希引用
所以我试图编写一个子例程,该子例程采用散列参数并向其添加几个键值对(通过引用)。到目前为止,我已经得到了这个:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 hash-ref 而不取消引用它:
编辑:
为了解决代码问题,当您这样做时:
您实际上是在使用 %{...} 复制 ref 指向的内容。您可以通过一个分解的示例看到这一点(没有函数,相同的功能):
运行:
两个散列都有原始的 'foo =>; foo',但现在每个都有不同的 bar/baz。
You can use the hash-ref without de-referencing it:
EDIT:
To address your code's issue, when you do:
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):
Run:
Both hashes have the original 'foo => foo', but now each have their different bar/baz's.