类ClassName< :: OtherClassName在Ruby中做什么?

时间:2010-07-21 17:27:56

标签: ruby

昨天,我在RSpec中找到了以下代码:

class OptionParser < ::OptionParser

这是做什么的?这与class OptionParser < NameSpace::OptionParser之间有什么区别?

1 个答案:

答案 0 :(得分:8)

一个可运行的例子可能最好地解释这个想法:

class C
  def initialize
    puts "At top level"
  end
end

module M
  class C
    def initialize
      puts "In module M"
    end
  end

  class P < C
    def initialize
      super
    end
  end

  class Q < ::C
    def initialize
      super
    end
  end
end

M::P.new
M::Q.new

运行时产生:

In module M
At top level