可以覆盖/实现的 ruby 运算符列表
是否有可以覆盖的所有 ruby 运算符的列表? (不是那些不能的!)
Is there a list anywhere of all ruby operators that can be overridden? (Not the ones that can't!)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是Ruby 运算符表。
属于方法和可重载的有:
该表来自 2001 Pickaxe 书中,但这与 Ruby 1.9 Pickaxe 书中的表相同 —— 没有理由相信这组中缀运算符会发生变化。
Here's a table of the Ruby operators.
The ones that are methods and overloadable are:
The table was from the 2001 Pickaxe book, but that's the same table as in the Ruby 1.9 Pickaxe book -- no reason to believe that this set of infix operators will ever change.