关键字

下面是 Java 里面的关键字。不能使用以下任一作为您的程序标识符。关键字 const 和 goto 语句被保留,即使他们目前尚未使用。true, false, 和 null 似乎是关键字,但它们实际上是字面值;你不能使用它们作为你的程序标识符。

  1. abstract continue for new switch
  2. assert*** default goto* package synchronized
  3. boolean do if private this
  4. break double implements protected throw
  5. byte else import public throws
  6. case enum**** instanceof return transient
  7. catch extends int short try
  8. char final interface static void
  9. class finally long strictfp** volatile
  10. const* float native super while

其中:*表示未使用,**表示是 1.2版本加入,*** 表示 1.4版本加入,
**** 表示5.0版本加入