ruby – 为什么“Enumerable”有“first”但不是“last”?

前端之家收集整理的这篇文章主要介绍了ruby – 为什么“Enumerable”有“first”但不是“last”?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
可枚举有:
(3..5).to_enum.first
# => 3

但它没有最后:

(3..5).to_enum.last
# => NoMethodError: undefined method `last' for #<Enumerator: 3..5:each>

这是为什么?

解决方法

这是因为不是所有可枚举的对象都有最后一个元素.

最简单的例子是:

[1,2,3].cycle

# (an example of what cycle does)
[1,3].cycle.first(9) #=> [1,3,1,3]

即使枚举器元素是有限的,也没有简单的方法来获得最后一个元素,而不是迭代到最后的元素,这将是非常低效的.

原文链接:https://www.f2er.com/ruby/265590.html

猜你在找的Ruby相关文章