I’m somewhat confused about the Ruby object hierarchy.
Every class that I define is an instance of the class Class, and Class
has the hierarchy Class < Module < Object < BasicObject.
If I define a class A, then A has the hierarchy A < Object <
BasicObject.
But if A is an instance of the class Class, should the superclass of A
not be Module, like in the first hierarchy above? A’s class is Class, so
it would make sense to me that it should follow the top one!!
it would make sense to me that it should follow the top one!!
No. A is a class and as such has a hierarchy. But since everything
in Ruby is an object, even classes are. An object is always an
instance of a class. In this case A is an instance of Class. And
Class has its own hierarchy. So you have
A < Object < BasicObject
L -instanceOf- Class < Module < Object < BasicObject
Think about going from an object to the right into its class, and then
up the hierarchy to the superclass.
How about this instead: an object’s class is to the right of it in the
diagram, and an object’s superclass is above it. The object ‘a’ is not
a class, so it has no superclass and nothing appears above it in the
diagram. The object A’s class is to its right, i.e. Class, and A’s
superclass is above A, i.e. Parent. Now what about Class? It’s a
class because this works:
MyClass = Class.new
and because Class is a class, it is has to be an instance of Class. So
Class’s class is Class, and as shown in the diagram Class’s superclass
is Module because we know from the ruby docs that Class inherits from
Module.
You defined the class A yourself, so unless you wrote:
class A < Module
end
or
class Parent < Module
end
class A < Parent
end
…then A doesn’t inherit from Module.
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.