Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在类中调用超类方法,例如:
class A def foo puts "lol" end end class B < A foo end
您正在尝试从类的上下文中调用实例方法。这是无效的。
什么会起作用:
class A def self.foo puts "lol" end end class B < A foo end