Ruby 1.9.1 和 1.8.6 之间的 instance_eval 行为有何差异?
我注意到类变量 @@my_class var 现在在 Ruby 1.9.1 中的 instance_eval'd 对象的上下文中查找,而在 Ruby 1.8.6 中则不是这种情况。
Ruby 1.9.1 的 instance_eval 行为还有哪些其他差异?
I noticed that class variables @@my_class var are now looked up in the context of the instance_eval'd object in Ruby 1.9.1 whereas this was not the case in Ruby 1.8.6.
What are some other differences in behaviour of instance_eval for Ruby 1.9.1 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为它(至少目前)也不会返回 self。
I think it [at least currently] doesn't return self, either.
我无法全部列出,但我知道不断查找会有一些变化。 在 1.8 中,常量查找位于调用者范围内,而在 1.9 中则位于块范围内。
I can't list them all, but I know that there are some changes in constant lookup. In 1.8, constant lookup was in the callers scope, while it is in the blocks scope in 1.9.