在 Ruby 中我需要用括号括起来产量吗?
在 Ruby 中,我可以使用
result << (yield element)
并且一切正常,但如果我这样做,
result.push(yield element)
我会收到一条警告,说明需要括号以保证将来的兼容性。我可以将上面的内容更改为
result.push(yield(element))
,解释器会再次高兴,但我不明白为什么我需要在一个调用中使用括号来调用yield而不是另一个?
In Ruby I can use
result << (yield element)
and everything works, but if I do
result.push(yield element)
I get a warning about needing parentheses for future compatibility. I can change the above to
result.push(yield(element))
and the interpreter is happy again, but I don't understand why I need parentheses in one call to yield and not the other?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以忽略该警告。在 1.8.7 及更高版本中您将不再获得它。导致此警告的计划解析器更改已被驳回。
You can ignore that warning. You won't get it anymore in 1.8.7 and later. The planned parser changes that were the reason for this warning, have been dismissed.