ruby中如何从内部类访问外部类的类变量

发布于 2024-10-12 09:54:11 字数 323 浏览 4 评论 0原文

我在下面有一些 Ruby 代码:

class A
  @@lock = Monitor.new
  class B
    def method
      @@lock.synchronize
        puts "xxxxx"
      end
    end
  end
end    

运行后它会抛出一个错误,如下所示:

未初始化的类变量 @@lock in A::B (NameError)

如果我想知道如何访问外部类A的类变量@@lock来自内部类B的方法,怎么办?先感谢您。

i have some code in Ruby here below:

class A
  @@lock = Monitor.new
  class B
    def method
      @@lock.synchronize
        puts "xxxxx"
      end
    end
  end
end    

after running it throws an error which said that below:

uninitialized class variable @@lock in A::B (NameError)

if i want to know how to access the outer class A's class variable @@lock from inner class B's method, how to do it? thank you in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

橙幽之幻 2024-10-19 09:54:11

我认为如果不定义访问器就不能。

B 的词法作用域位于 A 内部,因此它的真实名称是 A::B 并且其他各种内容都不同。

但它不是子类或任何其他类型的派生类,因此它实际上没有任何特殊权利来查看 A 的私有或受保护或其他本地元素。

I don't think you can without defining an accessor.

Class B is lexically scoped inside of A, so its real name is A::B and various other things are different.

But it's not a child or any other sort of derived class, so it doesn't actually have any special rights to see private or protected or otherwise local elements of A.

土豪我们做朋友吧 2024-10-19 09:54:11

访问此类变量的唯一方法是通过访问器方法

class A
   def self.lock
     @@lock ||= Monitor.new
   end

   class B
     def method
       A.lock.synchronize
         puts "xxxxx"
       end
     end
   end
 end

The only way to access this class variable is via an accessor method

class A
   def self.lock
     @@lock ||= Monitor.new
   end

   class B
     def method
       A.lock.synchronize
         puts "xxxxx"
       end
     end
   end
 end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文