作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在不必创建临时数组的情况下访问哈希中键的最后一个元素?
我知道哈希是无序的。但是,有些应用程序(如我的)可以使用简单的 sort
订购我的 key 。调用哈希键。希望我已经解释了为什么我想要这个。我承认,barney/elmo 示例是一个糟糕的选择,但它确实有其应用。
考虑以下:
my %hash = ( barney => 'dinosaur', elmo => 'monster' );
my @array = sort keys %hash;
print $array[$#{$hash}];
#prints "elmo"
最佳答案
print( (keys %hash)[-1]);
print
的语法混淆。的参数列表。
print ~~(keys %hash)[-1];
关于perl - 如何在不使用临时数组的情况下访问最后一个 Perl 哈希键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1109740/
我是一名优秀的程序员,十分优秀!