Possible Duplicate:
Comparing Character, Integer and similar types in Java: Use equals or ==?
char c = data.charAt(4);
System.out.println(c + "-" + s);
if (c == s) { // s is an integer
System.out.println(data);
}
The output is 0-0 1-1 0-0 1-1 1-1
I mean the c and s is same. But the condition is never satisfied. Why is it behaving strangely
System.out.println(data);is not executed, then (obviously)cdoes not equals. – Bart Kiers Nov 22 '11 at 19:51System.out.println((int)c + " " + s);? – LanguagesNamedAfterCofee Nov 22 '11 at 19:57