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