本文介绍了创建散列值的数组引用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
\ @ {values%hash} $ b是否有可能将散列值作为数组引用返回? $ b
我查看了perlref文件,但没有看到与此相关的任何内容(或者如果我这样做了,无法将它与我的问题联系起来)。
解决方案
我想你正在寻找这个:
my $ values_ref = [values%hash];
Is it possible to return a hash's values as an array reference?
\@{values %hash}
I looked over the perlref document, but didn't see anything relating to this (or if I did, I wasn't able to relate it to my question).
解决方案
I think you're looking for this:
my $values_ref = [ values %hash ];
这篇关于创建散列值的数组引用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!