the below given code gives "Not Equal". But as trim() returns a string whose value is string used to invoke the method but with any leading or trailing blank spaces removed. So isn't the condition result in true and output be "Equal"?
When you try to compare two strings using ==, Java compares thier object references and result will be false, even if lexically the strings are equal. This is because Strings in Java are immutable and hence separate object is created for each string. To compare two strings lexically, use equals() method.
SCJP 5.0
Rippon Jalali
Greenhorn
Joined: Aug 25, 2006
Posts: 23
posted
0
but when we are comparing string literals there is no need of equals method.As when we run the code below.it gives output "Equal". if("String".toString() == "String")
But " String ".trim() is not a String literal. You call a method on a String literal and it returns a new String object, of which the value is "String" (without the leading and trailing white space).
As to why == normally does work with string literals, that's a more complicated story. It is because of an optimization that the Java compiler has for strings, the string pool.
Never rely on == for comparing strings. Always use equals(), also for string literals.
This prints "Equal".Again, .toUpperCase() returns a String object then how is it returning true..
toUpperCase() methods Converts all of the characters in this String to upper case.
in your case "STRING" and comparative STRING is already defined in uppercase try this toLowerCase() then you would fine you answer.. [ January 16, 2007: Message edited by: Saif uddin ]