For which cases or tokens java is not case sensitive ?
843789Apr 13 2009 — edited Apr 14 2009Java is case sensitive for its tokens like method names,variables,string values etc.But it is not case sensitive when defining literals explicitly like 2.0d and 2.0D,3.6f and 3.6F.Also hex and octal literals like OXA or oxA,aBC or ABC mean one and the same.
So are these the only cases or there is something i missed ?
Thanks for your consideration.