What is the difference? When should I use which? Why are there so many of them?
|
Example: |
|||||||||||||||||
|
From the documentation:
and:
If that is unclear, it would be nice to know what exactly is unclear, so that the documentation can be improved.
Never. Use polymorphism instead.
I wouldn't call two "many". There are two of them, because they do two different things. |
|||||||||||
|
|
More ruby style is to ask objects, whether they respond to a method you need or not, using respond_to? . This allows both minimal interface and implementation unaware programming. Not always applicable of course, thus there is still a possibility to ask about more conservative understanding of "type", which is class or a base class, using the methods you're asking about. |
|||
|
is_a?andkind_of?exist: I suppose it's part of Ruby's design philosophy. Python would say there should only be one way to do something; Ruby often has synonymous methods so you can use the one that sounds better. It's a matter of preference. It may partly be due to Japanese influence: I'm told that they will use a different word for the same number depending on the sentence in order to make it sound nicer. Matz may have carried that idea into his language design. – Nathan Long Mar 21 '11 at 16:04