这有什么区别:
module Outer module Inner class Foo end end end
还有这个:
module Outer::Inner class Foo end end
我知道如果之前没有定义Outer,后一个例子将不起作用,但是在恒定范围内还存在一些其他差异,我可以在SO或文档中找到它们的描述(包括编程Ruby书)
解决方法
至少有一个区别 – 常量查找,检查此代码:
module A CONST = 1 module B CONST = 2 module C def self.const CONST end end end end module X module Y CONST = 2 end end module X CONST = 1 module Y::Z def self.const CONST end end end puts A::B::C.const # => 2,CONST value is resolved to A::B::CONST puts X::Y::Z.const # => 1,CONST value is resolved to X::CONST