为什么要在
Ruby中创建对象的代理引用,通过使用to_enum方法而不是直接使用对象?我不能想到任何实际的用途,试图理解这个概念&有人可能会使用它,但我看到的所有例子似乎都是微不足道的.
例如,为什么使用:
"hello".enum_for(:each_char).map {|c| c.succ }
代替
"hello".each_char.map {|c| c.succ }
我知道这是一个非常简单的例子,有没有人有任何现实世界的例子?
解决方法
大多数接受块的内置方法将返回枚举器,以防未提供块(例如,您的示例中的String#each_char).对于这些,没有理由使用to_enum;两者都会有同样的效果.
不过,有几种方法不会返回枚举器.在这种情况下,您可能需要使用to_enum.
# How many elements are equal to their position in the array? [4,1,2,0].to_enum(:count).each_with_index{|elem,index| elem == index} #=> 2
另一个例子,Array#产品,#uniq和#uniq!没有用来接受一个块.在1.9.2中,这被更改,但为了保持兼容性,没有块的表单不能返回枚举器.仍然可以手动使用to_enum来获取枚举器:
require 'backports/1.9.2/array/product' # or use Ruby 1.9.2+ # to avoid generating a huge intermediary array: e = many_moves.to_enum(:product,many_responses) e.any? do |move,response| # some criteria end
to_enum的主要用途是当您实现自己的迭代方法时.你通常会有第一行:
def my_each return to_enum :my_each unless block_given? # ... end