module Imodule ??? end class Some include Imodule def self.imethod puts "original" end end Some.imethod # => "overrided"
如何创建一个会覆盖静态方法的模块?
这是一个深入了解ruby功能的面试问题.不要提出另一个问题的方法:)