You should care about superclass, not class: $ irb irb(main):001:0> Object.superclass => nil irb(main):002:0> Class.superclass => Module irb(main):003:0> Cheers, Kent. On Jun 21, 2004, at 4:08 PM, Sam Sungshik Kong wrote: > Hello! > > I found a strange thing. > > Object.class > =>Class > Class.class > =>Class > > As you see, Object and Class are of same type. > > Object.methods.length > =>73 > Class.methods.length > =>74 > Class.methods - Object.methods > =>["nesting"] > > I expected that Object has same methods as Class but it's not. > Can somebody explain and teach me please? > > Thanks in advance. > > kong > > >