What's the difference between the class and type methods in Ruby? I've noticed that type works to find the type of some classes but not others.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The key difference is that
Here's why you should use
In reality, you probably want to use |
|||||||||||||||||
|
|
# For ruby 1.8
$ ri Object#type
------------------------------------------------------------ Object#type
obj.type => class
------------------------------------------------------------------------
Deprecated synonym for Object#class.
# For ruby 1.9
$ ri1.9 Object#type
Nothing known about Object#type
|
|||||||||
|