vote up 0 vote down star

String parts is String[6]:

[231, CA-California, Sacramento-155328, aleee, Customer Service Clerk, Alegra Keith.doc.txt]

But when I compare parts[0] with "231":

"231" == parts[0]

the above result is false,

I'm confused, so could anybody tell me why?

flag

40% accept rate
wow, 4 identical answers already :) – skaffman Jun 15 at 12:51
3  
Putting the title of your question into google would have yielded and answer very quickly indeed. – Visage Jun 15 at 12:52

10 Answers

vote up 10 vote down

The == operator compares the object references, not the value of the Strings.

To compare the values of Strings, use the String.equals method:

"231".equals(parts[0]);

This is true with any other object in Java -- when comparing values, always use the equals method rather than using the == operator.

The equals method is part of Object, and should be overridden by classes which will be compared in one way or another.

link|flag
vote up 7 vote down

== in Java compares the address of the objects (strings in this case).

What you want is parts[0].equals("231")

link|flag
vote up 5 vote down

If the strings are not interned, then == checks reference identity. Use:

 "231".equals(parts[0]);

instead.

link|flag
+1 for mentioning that string literals return true when compared to each other. A student of mine would not believe me that == does not check the actual contents of the string as every example that he gave me used string literals and returned true. – bodnarbm Jun 15 at 12:58
vote up 3 vote down

Use equals method: parts[0].equals("231"). == operator compares object references.

link|flag
vote up 2 vote down

"==" compares object references, in your case "231" is a different object than parts[0].

You want to use String.equals.

parts[0].equals("231")
link|flag
It's often a good idea to use "foo".equals(bar) instead of bar.equals("foo"). The first piece of code will work regardless of whether or not bar is null. The second piece of code will throw a NullPointerException. – William Brendel Jun 15 at 18:06
vote up 1 vote down

The answer is very simple: when you compare strings through == operator, you actually compare if two different variables refer to a single String object. And they don't, the string in the array and newly created "231" are different String objects with the same contents.

The right thing to do is to use the folllowing expression: "231".equals(parts[0]) or "231".equalsIgnoreCase(parts[0]). This will give you what you need and return true if these String objects contain the same values.

link|flag
vote up 1 vote down

Use the equals method to compare objects:

String[] test = {"231", "CA-California", "Sacramento-155328", "aleee",
                 "Customer Service Clerk", "Alegra Keith.doc.txt"};

System.out.println("231".equals(test[0]));

The comparison '==' compares references, not values.

link|flag
vote up 0 vote down

I thought it might be helpful to express the answer in a test case:

public class String231Test extends TestCase {
    private String	a;
    private String	b;

    protected void setUp() throws Exception {
    	a = "231";
    	StringBuffer sb = new StringBuffer();
    	sb.append("231");
    	b = sb.toString();
    }

    public void testEquals() throws Exception {
    	assertTrue(a.equals(b));
    }

    public void testIdentity() throws Exception {
    	assertFalse(a == b);
    }
}
link|flag
vote up 0 vote down

The following prints out "true";

    	String s = "231";
	if(s == "231")
	{
		System.out.println("true");
	}
	else
	{
		System.out.println("false");
	}

This is because Strings are not mutable and java will try and save as much space as possible, so it points both to the same memory reference.

However, the following prints out "false":

    	String s = new String("231");
	if(s == "231")
	{
		System.out.println("true");
	}
	else
	{
		System.out.println("false");
	}

"new" will force it to store the string in a new memory location.

By the way, you should ALWAYS use .equals() to compare strings (for cases just like this one)

link|flag
Why was this downvoted? – Jesse Jun 15 at 21:15
Because that's not exactly what the author asked about, I assume. – Malcolm Jun 20 at 15:48
vote up 0 vote down

As many others have already explained, you try to compare with equality operator, but then it would relies on Object.equals() instead of String.equals().

So you can do the job by explicitly calling String.equals(), but instead of writing

parts[0].equals("blahblah")

I would prefer such :

"blahblah".equals(parts[0])

As it avoids testing potential nullity of parts[0] (but be careful that parts variable itself could be null...)

Another way is using String.intern() :

if (parts[0].intern() == "blahblah") ...

See http://java.sun.com/j2se/1.4.2/docs/api/java/lang/String.html#intern() for more info on that.

link|flag

Your Answer

Get an OpenID
or

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