[Master Answer Logo]
Question

What are the reserved words in Java?

Answer

Sometimes the specification for a programming language will have reserved words that are intended for possible use in future versions. In Java, const and goto are reserved words — they have no meaning in Java but they also cannot be used as identifiers. By "reserving" the terms, they can be implemented in future versions of Java without "breaking" older Java source code.

— Source: Wikipedia (www.wikipedia.org)