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

I've been using the == operator in my program to compare all my strings so far. However, I ran into a bug, changed one of them into .equals() instead, and it fixed the bug.

Is == bad? When should it and should it not be used? What's the difference?

share|improve this question

22 Answers

up vote 508 down vote accepted

== tests for reference equality.

.equals() tests for value equality.

Consequently, if you actually want to test whether two strings have the same value you should use .equals() (except in a few situations where you can guarantee that two strings with the same value will be represented by the same object eg: String interning).

== is for testing whether two strings are the same object.

// These two have the same value
new String("test").equals("test") ==> true 

// ... but they are not the same object
new String("test") == "test" ==> false 

// ... neither are these
new String("test") == new String("test") ==> false 

// ... but these are because literals are interned by 
// the compiler and thus refer to the same object
"test" == "test" ==> true 

// concatenation of string literals happens at compile time resulting in same objects
"test" == "te" + "st"  ==> true

// but .substring() is invoked at runtime, generating distinct objects
"test" == "!test".substring(1) ==> false

It is important to note that == is much cheaper than equals() (a single pointer comparision instead of a loop), thus, in situations where it is applicable (i.e. you can guarantee that you are only dealing with interned strings) it can present an important performance improvement. However, these situations are rare.

share|improve this answer
17  
I guess in Java you should say "references" instead of "pointers". – Henrik Paul Feb 5 '09 at 11:03
1  
If you can do things this way, what is the method compareTo useful for? – Xokas11 Feb 27 '09 at 13:59
3  
@Xokas11: compareTo is generally used for sorting. – Michael Myers Feb 27 '09 at 15:17
1  
equals, compareTo and hashCode are all directly related with contracts that must be fulfilled. Only equals and hashCode are polymorphic over all objects. compareTo is from Comparable. – user166390 Oct 25 '09 at 21:44
5  
Just a note equals() exactly Compares this String to another String, BUT equalsIgnoreCase() Compares this String to another String, ignoring case considerations – Yajli Maclo Feb 28 at 15:30
show 2 more comments

== tests object references, .equals() tests the string values.

Sometimes it looks as if == compares values, because Java does some behind-the-scenes stuff to make sure identical in-line strings are actually the same object.

For example:

String fooString1 = new String("foo");
String fooString2 = new String("foo");

// Evaluates to false
fooString1 == fooString2;

// Evaluates to true
fooString1.equals(fooString2);

// Evaluates to true, because Java uses the same object
"bar" == "bar";

But beware of nulls!

== handles null strings fine, but calling .equals() from a null string will cause an exception:

String nullString1 = null;
String nullString2 = null;

// Evaluates to true
nullString1 == nullString2;

// Throws an Exception
nullString1.equals(nullString2);
share|improve this answer
3  
Sometimes it looks as if "==" compares values, -- == do always compare values! (It's just that certain values are references!) – aioobe Jul 24 '12 at 12:44

The == operator checks to see if the two strings are exactly the same object.

The .equals() method will check if the two strings have the same value.

share|improve this answer

String in java are immutable that means whenever you try to change/modify the string you get a new instance. You cannot change the original string. This has been done so that these string instances can be cached. A typical program contains a lot of string references and caching these instances can decrease the memory footprint and increase the performance of the program.

When using == operator for string comparison you are not comparing the contents of the string but are actually comparing the memory address, if they are both equal it will return true and false otherwise. Whereas equals in string compares the string contents.

So the question is if all the strings are cached in the system how come == returns false whereas equals return true. Well this is possible. If you make a new string like String str = new String("Testing") you end up creating a new string in the cache even if the cache already contains a string having the same content. In short "MyString" == new String("MyString") will always return false.

Java also talks about the function intern() that can be used on a string to make it part of the cache so "MyString" == new String("MyString").intern() will return true.

Note: == operator is much faster that equals just because you are comparing two memory addresses, but you need to be sure that the code isn't creating new String instances in the code otherwise you will encounter bugs.

share|improve this answer

Yea, it's bad...

"==" means that your two string references are exactly the same object. You may have heard that this is the case because Java keeps sort of a literal table (which it does), but that is not always the case. Some strings are loaded in different ways, constructed from other strings, etc., so you must never assume that two identical strings are stored in the same location.

Equals does the real comparison for you.

share|improve this answer

== Compare Object refrence

.equal Compare String Value

Sometimes == gives illusions of comparing String values, in following cases

       String a="Test";

       String b="Test";

       if(a==b) ===> true

This is a because when you create any String Literal , JVM first search for that literal in String pool , if it match, same referance will be given to that new String, because of this we are getting

(a==b) =====> true

                     String Pool


     b -------------------> "test" <-----------------a

== Fails in following case

     String a="test";

     String b=new String("test");


     if(a==b) ======> false

in this case for new String("test") statement new String will be created in heap that referance will be given to b, So b will be given reference in heap not in String Pool. Now a is pointing to String in String pool while b is pointing to String in heap, because of that we are getting

if(a==b) ======> false.

                String Pool

                 "test" <--------------------- a


               Heap

                 "test" <-------------------- b

While equals is awalys compare value of String so it gives true in both cases

          String a="Test";

          String b="Test";

          if(a.equals(b)) ===> true





          String a="test";

          String b=new String("test");

          if(a.equals(b)) ===> true

So Using equals is awalys better.

Hope this will help

share|improve this answer
String a = new String("foo");
String b = new String("foo");
System.out.println(a == b); // prints false
System.out.println(a.equals(b)); // prints true

Make sure you understand why.

share|improve this answer

== compares the reference value of String object whereas the equals() method is present in the java.lang.Object class compares the content of the String object.

share|improve this answer
2  
not to be nit picky, but the equals() method for String is actually in the String class, not in Object. The default equals() in Object would not compare that the contents are the same, and in fact just returns true when the reference is the same. – jschoen Nov 20 '12 at 17:04

== compares object references in Java, and that is no exception for String objects.

For comparing the actual contents of objects (including String), one must use the equals method.

If a comparison of two String objects using == turns out to be true, that is because the String objects were interned, and the Java Virtual Machine is having multiple references point to the same instance of String. One should not expect that comparing one String object containing the same contents as another String object using == to evaluate as true.

share|improve this answer

.equals compares the data in a class (assuming the function is implemented). == compares pointer locations (location of the object in memory)

== returns true if both objects (NOT TALKING ABOUT PRIMITIVES) point to the SAME object instance .equals returns true of two objects contain the same data

http://www.java-samples.com/showtutorial.php?tutorialid=221

That may help you.

share|improve this answer

Yes, == is bad for comparing Strings (any objects really, unless you know they're canonical). == just compares object references. .equals() tests equality. For Strings, often they'll be the same but as you've discovered that's not guaranteed.

share|improve this answer

I agree with the answer from zacherates.

But what you can do is to call intern() on your non-literal strings.

From zacherates example:

  // ... but they are not the same object
  new String("test") == "test" ==> false

If you intern the non-literal String equality is true

  new String("test").intern() == "test" ==> true
share|improve this answer

Java is having a String pool under which java manages the memory allocation for the String objects. See String Pools in java

What happens is when you check(compare) two objects using == operator it compares the address equality into the string-pool. If two String objects having same address references then it returns true otherwise false. But if you want to compare the contents of two String objects then you must override equals method.

equals is actually the method of Object class but is Overridden into the String class and new definition is given which compares the contents of object.

Example:
    stringObjectOne.equals(stringObjectTwo);

But mind it respects the case of String. If you want Case insensitive compare then you must go for equalsIgnoreCase method of the String class.

Lets See:

String one   = "HELLO"; 
String two   = "HELLO"; 
String three = new String("HELLO"); 
String four  = "hello"; 

one == two;   // TRUE
one == three; // FALSE
one == four;  // FALSE

one.equals(two);            // TRUE
one.equals(three);          // TRUE
one.equals(four);           // FALSE
one.equalsIgnoreCase(four); // TRUE
share|improve this answer
1  
I see that this is a late answer to big question. May I ask what it provides that isn't already mentioned in the existing answers? – Mysticial Apr 2 at 9:19
@Mysticial he has added equalsIgnoreCase which might be informative for the fresher. – AmitG Apr 4 at 8:48

I think that when you define a String you defines an object. So you need to use .equals(). When you use primitive data types you use == but with String (and any object) you must use .equals()

share|improve this answer
Also note that == doesn't work for char[] – Khaled A Khunaifer Mar 24 at 14:03

== performs a reference equality check, whether the 2 objects (strings in this case) refer to the same object in the memory.

The equals() method will check if the contents or the states of 2 objects are the same.

Obviously == is faster, but will (might) give false results in many cases if you just want to tell if 2 strings hold the same text.

Defiantly the use of equals() method is recommended.

Don't worry about the performance. Some things to encourage using String.equals():

  1. Implementation of String.equals() first checks for reference equality (using ==), and if the 2 strings are the same by reference, no further calculation is performed!
  2. If the 2 string references are not the same, String.equals() will next check the lengths of the strings. This is also a fast operation because the String class stores the length of the string, no need to count the characters or code points. If the lengths differ, no further check is performed, we know they cannot be equal.
  3. Only if we got this far will the contents of the 2 strings be actually compared, and this will be a short-hand comparison: not all the characters will be compared, if we find a different character (at the same position in the 2 strings), no further characters will be checked.

When all is said and done, even if we have guarantee that the strings are interns, using the equals() method is still not that overhead that one might think, defiantly the recommended way. If you want efficient reference check, then use enums where it is guaranteed by the language specification and implementation that the same enum value will be the same object (by reference).

share|improve this answer

Function:

// word-by-word fixed-cut similarity

public static float simple_similarity (String u, String v)
{
    String [] a = u.split(" ");
    String [] b = v.split(" ");

    long correct = 0;
    int minLen = Math.min(a.length,b.length);

    for (int i=0; i<minLen; i++)
    {
        for (int j=0; j<Math.min(a[i].size(),b[i].size()); i++)
        {
            if (a[i][j] == b[i][j])
            {
                correct++;
            }
        }
    }

    return (float)(((double)correct)/Math.max(u.size(),v.size()));
}

Test:

String a = "This is the first string.";

String b = "this is not 1st string!";

// for exact string comparison, use .equals

boolean exact = a.equals(b);

// For similarity check, there are libraries for this
// Here I'll try a simple example I wrote

float similarity = simple_similarity(a,b);
share|improve this answer

All objects are guaranteed to have a .equals method since Object contains a method equals() that returns a boolean. It is the subclasses jobs to override this method if a further defining definition is required. Without it(i.e. using ==) only memory addresses are checked between two objects for equality. String overrides this .equals method and instead of using the memory address it returns the comparison of strings at the character level for equality.

A key note is that strings are stored in one lump pool so once a string is created it is forever stored in a program at the same address. Strings do not change, they are immutable. This is why it is a bad idea to use regular string concatenation if you have a serious of amount of string processing to do. Instead you would use the StringBuilder classes provided. Remeber the pointers to this string can change and if you were interested to see if two pointers were the same == would be a fine way to go. Strings themselves do not.

share|improve this answer

always == operator meant for object reference comparison,where as String class .equals() method is overridden for content comparison

String s1= new String("abc");
String s2= new String("abc");
System.out.println(s1 == s2);//It prints false(reference comparison)
System.out.println(s1.equals(s2));//It prints true (content comparison)
share|improve this answer

In simple words, .equals() will check if the two strings have the same value and return the boolean value where as the == operator checks to see if the two strings are the same object.

share|improve this answer

equals() is overriden in the class String to compare string characters whilst == is to compare object references . but becareful , you must check if the string is null before .

String s = "val";
String b = "val";
System.out.println(s.equals(b));

prints true.

share|improve this answer

== is used to compare references and .equals() is used to compare logical equality of strings.

There can be cases where == can return false for two strings and .equals() can return true.

share|improve this answer
2  
How does this differ from the several other answers? – Mark May 12 at 0:09

== also checks whether two different objects refer to same memory allocation in heap or stack while .equals checks only whether they have same value or not.example-

  String obj=new String (hello);
  String obj1="hello";
  1   if(obj1.equals(obj));
  2   if(obj==obj1) ;

.equals will print 'true' while == will print 'false' because both are in different position in memory.If

        3     String obj2="hello";
               if(obj1==obj2);

it will return true because of string pooling concept both are referring to the same position.

share|improve this answer
1  
Don't you think what you've posted here has been said often enough already in other answers to this question? Please don't rehash things that have already been said multiple time in other answers, it doesn't add any value to the site. If you have new things to add, please do. But just repeating what others have said isn't productive. – Mat 2 days ago

protected by Mat Oct 11 '12 at 6:08

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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