• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

difference between equals() and == and compareTo()

 
Ranch Hand
Posts: 50
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
what is the difference between equals() and == and compareTo() ??
 
Ranch Hand
Posts: 103
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The "==" operator should be used for primitive types only. If it's used with objects the value compared is the reference to the object which can give you results that your not expecting. I find this a hard oncept to understand but there are numerous references that have info about it. Check RHE, examcram or the JLS. Mock exam ques. about the difference between the two are numerous and can be quite tricky.
 
Sheriff
Posts: 5782
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
== does plain reference comparison. It is an operator.
equals() is a method defined in java.lang.Object class. Subclasses can override this method to provide a meaningful content comparison. The default behaviour implemented by the Object class does nothing but reference comparison. So, if a class doesnot override equals() method, the result of calling this method will be consistent with the results obtained when you use the == operator.
CompareTo() is a method defined by the java.lang.Comparable interface. Unlike the equals() method, this method is designed to be used for determining the natural order of objects while sorting. Java provides various sorting helper classes and method and some of them call the compareTo() method( if implemented by your class ) to findout the natural sorting order of each object that is an instance of your class. So, compareTo() does not check equality, but checks which object comes first when they need to be sorted in a specific order.
Ajith
reply
    Bookmark Topic Watch Topic
  • New Topic