Enumerable::each_with_index 现在可以选择在 Ruby 1.9 中接受参数。有什么意义和/或用例是什么?
在 Ruby 1.8.7 及更早版本中,Enumerable::each_with_index
不接受任何参数。在 Ruby 1.9 中,它将接受任意数量的参数。 文档/代码显示它只是传递这些参数沿着::each
。使用内置标准库 Enumerables,我相信传递参数会产生错误,因为 Enumerable 的 ::each
方法不需要参数。
所以我猜这仅在创建您自己的 Enumerable 时有用,您可以在其中创建一个接受参数的 ::each
方法。这是有用的例子是什么?
这一变化还有其他不明显的后果吗?
In Ruby 1.8.7 and prior, Enumerable::each_with_index
did not accept any arguments. In Ruby 1.9, it will accept an arbitrary number of arguments. Documentation/code shows that it simply passes those arguments along to ::each
. With the built in and standard library Enumerables, I believe passing an argument will yield an error, since the Enumerable's ::each
method isn't expecting parameters.
So I would guess this is only useful in creating your own Enumerable in which you do create an ::each
method that accepts arguments. What is an example where this would be useful?
Are there any other non-obvious consequences of this change?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我浏览了一些 gems 代码,发现几乎没有使用该功能。确实如此,
spreadsheet
:我真的不认为这是一个重要的变化:
#each
是混合模块 Enumerable 和方法的类的基本方法添加(map、select、...)不接受参数。I went through some gems code and found almost no uses of that feature. One that it does,
spreadsheet
:I don't really see that as an important change:
#each
is the base method for classes that mix-in module Enumerable, and methods added (map, select, ...) do not accept arguments.