I am developing a small application in Java. The following if condition never becomes true, does any body be knows the actual reason?
public int foo()
{
String sTitle = "title";
if (sTitle.equalsIgnoreCase(MyCustomObject.sTitle))
return 5;
else
return 6;
}
It always returns 6. I ran it in debug mode and saw that both strings contains same value. I also tried swapping the positions of both strings like:
MyCustomObject.sTitle.equalsIgnoreCase(sTitle)
but that didn't work either.
MyCustomObject.sTitle. – Jonathon Nov 11 '11 at 19:36MyCustomObject.sTitlein the same spot assTitleand see if it still doesn't work. – Bill the Lizard♦ Nov 11 '11 at 19:38