Search code examples
javakeyword

Why are there keywords in Java that have no usage, yet are reserved?


I tried to do a quick search about this, but nothing specifically answering my question came up. As you might know there are keywords reserved in Java that don't do anything.

  • const
  • goto

What is the purpose of this?


Solution

  • These words are keywords in many other languages, and it could be confusing if they were used as identifiers.