Ruby 1.9.1 和 1.8.6 之间的 instance_eval 行为有何差异?

发布于 2024-07-30 07:02:31 字数 146 浏览 3 评论 0原文

我注意到类变量 @@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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

葬シ愛 2024-08-06 07:02:31

我认为它(至少目前)也不会返回 self。

I think it [at least currently] doesn't return self, either.

灰色世界里的红玫瑰 2024-08-06 07:02:31

我无法全部列出,但我知道不断查找会有一些变化。 在 1.8 中,常量查找位于调用者范围内,而在 1.9 中则位于块范围内。

FOO = "hi"

class Something
  FOO = "bye"

  def self.handle(&block)
    instance_eval(&block)
  end
end

p Something.handle { FOO }
# "hi" on 1.8, "bye" on 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.

FOO = "hi"

class Something
  FOO = "bye"

  def self.handle(&block)
    instance_eval(&block)
  end
end

p Something.handle { FOO }
# "hi" on 1.8, "bye" on 1.9
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文