Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to understand the difference between these four methods. I know by default that == calls the method equal? which returns true when both operands refer to exactly the same object.

=== by default also calls == which calls equal?... okay, so if all these three methods are not overridden, then I guess ===, == and equal? do exactly the same thing?

Now comes eql?. What does this do (by default)? Does it call make a call to the operand's hash/id?

Why does Ruby have so many equality signs? Are they supposed to differ in semantics?

share|improve this question
I just started a irb and had the following result which contradicts yours...All of these 3 are true: "a" == "a", "a" === "a" and "a".eql? "a". But this is false: "a".equal? "a" (Mine is ruby 1.9.2-p180) – PeterWong Aug 23 '11 at 6:19
2  
@Peter: That's because strings override all of the equality operators. Trying using a = Object.new; b = Object.new then all ==, ===, .equal?, .eql? will return true for a vs a and false for a vs b. – Nemo157 Aug 23 '11 at 6:22
Thanks for your explanation! – PeterWong Aug 23 '11 at 7:04

1 Answer

up vote 102 down vote accepted

I'm going to heavily quote the Object documentation here, because I think it has some great explanations. I encourage you to read it, and also the documentation for these methods as they're overridden in other classes, like String.

Side note: if you want to try these out for yourself on different objects, use something like this:

class Object
  def all_equals(o)
    ops = [:==, :===, :eql?, :equal?]
    Hash[ops.map(&:to_s).zip(ops.map {|s| send(s, o) })]
  end
end

"a".all_equals "a" # => {"=="=>true, "==="=>true, "eql?"=>true, "equal?"=>false}

== — generic "equality"

At the Object level, == returns true only if obj and other are the same object. Typically, this method is overridden in descendant classes to provide class-specific meaning.

This is the most common comparison, and thus the most fundamental place where you (as the author of a class) get to decide if two objects are "equal" or not.

=== — case equality

For class Object, effectively the same as calling #==, but typically overridden by descendants to provide meaningful semantics in case statements.

This is incredibly useful. Examples of things which have interesting === implementations:

  • Range
  • Regex
  • Proc (in Ruby 1.9)

So you can do things like:

case some_object
when /a regex/
  # The regex matches
when 2..4
  # some_object is in the range 2..4
when lambda {|x| some_crazy_custom_predicate }
  # the lambda returned true
end

See my answer here for a neat example of how case+Regex can make code a lot cleaner. And of course, by providing your own === implementation, you can get custom case semantics.

eql? — generic (possibly alternate) equality

The eql? method returns true if obj and other have the same value. Used by Hash to test members for equality. For objects of class Object, eql? is synonymous with ==. Subclasses normally continue this tradition, but there are exceptions. Numeric types, for example, perform type conversion across ==, but not across eql?, so:

1 == 1.0     #=> true
1.eql? 1.0   #=> false

So you're free to override this for your own uses, or you can just override == and by default eql? will behave the same way.

equal? — identity comparison

Unlike ==, the equal? method should never be overridden by subclasses: it is used to determine object identity (that is, a.equal?(b) iff a is the same object as b).

This is effectively pointer comparison.

share|improve this answer
   
amazing.......:) – PriteshJ Aug 24 '12 at 17:55
2  
As I understand from your answer, the strictness is: equal? < eql? < == < ===. Normally, you use ==. For some loose purposes, you use ===. For strict situation, you use eql?, and for complete identity, you use equal?. – sawa Oct 12 '12 at 0:42
1  
The notion of strictness isn't enforced or even suggested in the documentation, it just so happens that Numeric handles it in a stricter manner than ==. It's really up to the author of the class. === is infrequently used outside of case statements. – jtbandes Oct 13 '12 at 2:46
1  
== is equality in terms of bigger/smaller too. I.e., if you include Comparable, it'll be defined in terms of <=> returning 0. This is why 1 == 1.0 returns true. – apeiros Nov 4 '12 at 14:36
This may very well be a SO top 100 answer. Hope this gets you 5 more upvotes soon! – MDeSchaepmeester May 7 at 13:55
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.