Forums Register Login

Different behaviour with string objects

+Pie Number of slices to send: Send
Hi,
The string objects behaving differently in differnt situations. Plase find the following code giving differnt result.

if("String".replace('t','t') == "String")
System.out.println("Equal");
else
System.out.println("Not Equal");

/*************************************/

if("String".replace('g','G') == "String".replace('g','G'))
System.out.println("Equal");
else
System.out.println("Not Equal");

/*************************************/

if(" String ".trim() == "String")
System.out.println("Equal");
else
System.out.println("Not Equal");

Please let me know why I am getting different results in the above three sinarios.

Thanks & Regards
Rajesh
+Pie Number of slices to send: Send
When you want to compare the actual content of an object for equivalence you should use the method equals(). This is because although the contents of your Strings are the same, == checks that the object references are equivalent. Which is not the case in all three of your examples.
+Pie Number of slices to send: Send
 

Originally posted by Pandoo Go:

if("String".replace('t','t') == "String")



Here, you're asking "replace" to perform a null operation -- i.e., a replacement that wouldn't change the String. The standard implementation of replace() optimizes this case and simply returns the original String. Two identical literals always refer to the same object, so this will print "Equal".


if("String".replace('g','G') == "String".replace('g','G'))



Each call to replace() will create a new String. These two new Strings will have the same contents, but won't be the same physical object, so this will print "Not Equal".


if(" String ".trim() == "String")



The call to trim() will return a new String, which won't be the same object as the literal "String", so this is another "Not Equal".

As a previous poster noted, "==" tells you if two Strings are the same physical object in memory, while the equals() methods compares the contents and returns true as long as the two Strings contain the same characters in the same order.
Whose rules are you playing by? This tiny ad doesn't respect those rules:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com


reply
reply
This thread has been viewed 1246 times.
Similar Threads
String Methods
String Equality
Strings
String Question
Java Strings
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 28, 2024 11:24:20.