Click here to Skip to main content
15,867,453 members
Articles / Mobile Apps / Android
Tip/Trick

equals( ) Versus == in Java(Android)

Rate me:
Please Sign up or sign in to vote.
5.00/5 (3 votes)
24 Nov 2011CPOL 31.2K  
It is important to understand that the equals( ) method and the == operator perform two different operations.
As just explained, the equals( ) method compares the characters inside a String object. The == operator compares two object references to see whether they refer to the same instance. The following program shows how two different String objects can contain the same characters, but references to these objects will not compare as equal:

Java
// equals() vs ==
   class EqualsNotEqualTo {
   public static void main(String args[]) {
   String s1 = "Hello";
   String s2 = new String(s1);
   System.out.println(s1 + " equals " + s2 + " -> " +
   s1.equals(s2));
   System.out.println(s1 + " == " + s2 + " -> " + (s1 == s2));
   }
   }


The variable s1 refers to the String instance created by "Hello". The object referred to by s2 is created with s1 as an initializer. Thus, the contents of the two String objects are identical, but they are distinct objects. This means that s1 and s2 do not refer to the same objects and are, therefore, not ==, as is shown here by the output of the preceding example:

Hello equals Hello -> true
Hello == Hello -> false

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --