Reflection and Metaprogramming Introduction : Class Reflection « Reflection « Ruby






Reflection and Metaprogramming Introduction


Finding the Class and Superclass of an Object

'a string'.class                                  # => String
'a string'.class.name                             # => "String"
'a string'.class.superclass                       # => Object
String.superclass                                 # => Object
String.class                                      # => Class
String.class.superclass                           # => Module
'a string'.class.new                              # => ""

 








Related examples in the same category

1.Call ancestors on a class name to see its inheritance hierarchy, like this:
2.The Object class has a class method that returns the name of an instance's class
3.class attribute of string instance
4.The class method supercedes Object's deprecated method type, or gets the name of the class as a string with the name method
5.To determine the name of the superclass