What's the difference between == and ===? Which one should you use when?
Both are just methods called on objects. This means that the objects decide which means what. However, there are conventions in Ruby about how these are different. Usually, ==
is stricter than ===
- a === b
will almost always be true if a == b
is. The best place to read about this is http://ruby-doc.org/core/classes/Object.html. Scroll down to the different sections about ==
and ===
. Here are some of the conventions I know about:
==
, when applied to plain Object
s, will only be true if one is exactly the same as the other - if they are stored in the same memory location (this is how Ruby works internally). If the arguments are of types other than Object, though, this method will usually be overridden.equal?
is just like ==
for plain Object
s, but will never be overridden by subclasses.===
is used for:
is_a?
alternative, backwards. String === 'str'
is true./s[at]r*/ === 'str'
is true.You can find the specific meaning of ===
for various classes in the documentation for those classes, for example, the Range
version is here (a synonym for include?
): http://ruby-doc.org/core/classes/Range.html#M000691
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With