Possible Duplicates:
How do I compare strings in Java?
whats the difference between “.equals and ==”
Hi all,
System.out.println() behaving in a different way with strings.
Can any one explain why
See the below code snippet
String a ="hello"
String b ="hello"
System.out.println("a==b"+"is"+a==b)
I expect this to print 'a==b is true', but it just prints false and I dont know why.
a==b is true, although that's pure luck, and as everyone mentioned,.equals()is how you're supposed to compare – davin Feb 5 '11 at 10:01falsebecause theais being concatenated to"a==b"+"is"and that is being compared tobusing==. – Bart Kiers Feb 5 '11 at 10:03