What are their differences? Coming from a Java background, it does seem to me <=> is the same as Java's equals(), while == is for direct reference comparison. Is this right?

link|improve this question

feedback

3 Answers

up vote 13 down vote accepted

== only measures if two objects are equal, whereas <=> should return -1 if the first object is smaller, 0 if they are equal, and 1 if the first object is greater.

If you define a <=> method for your class, you'll get all of the other comparison operators defined as well (==, <, >, and so on).

link|improve this answer
3  
Ah, so <=> is like Java's compareTo() method? – devoured elysium Jul 24 '11 at 20:29
@devoured yep, exactly right – Rafe Kettler Jul 24 '11 at 20:30
feedback

Can't say I'm not trying to promote myself, but I wrote a full length tutorial about comparison and equality operators in Ruby: "Ruby Basics – Equality operators in Ruby"

In there you can see the differences between all the equality operators, including <=>, == and === (and the implications of implementing them, including the hash method implementation).

link|improve this answer
I was just reading that site :P – devoured elysium Jul 24 '11 at 20:36
feedback

== is like Java's equals, while <=> is like compareTo. == compares the two objects and returns whether they are equivalent. a <=> b compares the two objects and returns 1 if a is bigger, 0 if they are the same and -1 if b is bigger.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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