这个问题最好用一个代码示例来概括:
module TestOne
module Foo
def foo
42
end
end
module Bar
include Foo
end
class Quux
include Bar
end
end
TestOne::Bar.ancestors # => [TestOne::Bar, TestOne::Foo]
TestOne::Quux.ancestors # => [TestOne::Quux, TestOne::Bar, TestOne::Foo, Object, Kernel]
TestOne::Quux.new.foo # => 42
module TestTwo
class Quux
end
module Bar
end
module Foo
def foo
42
end
end
end
TestTwo::Quux.send :include, TestTwo::Bar
TestTwo::Bar.send :include, TestTwo::Foo
TestTwo::Bar.ancestors # => [TestTwo::Bar, TestTwo::Foo]
TestTwo::Quux.ancestors # => [TestTwo::Quux, TestTwo::Bar, Object, Kernel]
TestTwo::Quux.new.foo # =>
# ~> -:40: undefined method `foo' for #<TestTwo::Quux:0x24054> (NoMethodError)
我认为当你包含一个模块(例如Bar
在一个类Foo
中)时,Ruby 存储的所有内容都是Foo
包含Bar
. 因此,当您在 Foo 上调用方法时,它会查找Bar
该方法。
如果那是真的,那么到TestTwo::Quux.new.foo
被调用的时候,我已经把这个foo
方法混入了TestTwo::Bar
,所以它应该可以工作,对吧?