[Solved] Java reserved words as identifiers [closed]


I think you may have figured out by yourself that reserve words are also case sensitive when you say that Java is case sensitive.

Using LONG as identifier would not cause any problem for the Java compiler, but the problem is variable name LONG may not mean much and might not contribute to a readable code

solved Java reserved words as identifiers [closed]