Perl是否保证返回一致排序的哈希键?

前端之家收集整理的这篇文章主要介绍了Perl是否保证返回一致排序的哈希键?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
给出类似的东西
foreach (keys %myHash) {
   ... do stuff ...
}

foreach (keys %myHash) {
   ... do more stuff ...
}

如果哈希不被改变,Perl是否保证以一致的顺序迭代密钥?

解决方法

Yes.从 perldoc -f keys开始:

The keys are returned in an apparently random order. The actual random order is subject to change in future versions of perl,but it is guaranteed to be the same order as either the values or each function produces (given that the hash has not been modified). Since Perl 5.8.1 the ordering is different even between different runs of Perl for security reasons (see “Algorithmic Complexity Attacks” in 07002).

(强调我的)

原文链接:https://www.f2er.com/Perl/172369.html

猜你在找的Perl相关文章