为了方便我直接复制过来了,原文如下:
Here's a list of keywords in the Java programming language.
下面是Java编程语言的关键字列表。
You cannot use any of the following as identifiers in your programs.
你不能使用下列任何一个单词做程序标识符。
The keywords const and goto are reserved, even though they are not currently used.
关键字const和goto语句是保留的,虽然他们目前没有使用。
true, false, and null might seem like keywords, but they are actually literals; you cannot use them as identifiers in your programs.
true,false,和null看起来是关键字,但它们实际上是字面值;你不能用它们作为程序标识符。
abstract |
continue |
for |
new |
switch |
assert*** |
default |
goto* |
package |
synchronized |
boolean |
do |
if |
private |
this |
break |
double |
implements |
protected |
throw |
byte |
else |
import |
public |
throws |
case |
enum**** |
instanceof |
return |
transient |
catch |
extends |
int |
short |
try |
char |
final |
interface |
static |
void |
class |
finally |
long |
strictfp** |
volatile |
const* |
float |
native |
super |
while |
* |
not used |
|
** |
added in 1.2 |
|
*** |
added in 1.4 |
|
**** |
added in 5.0 |
访问控制
- private 私有的
- protected 受保护的
- public 公共的
类、方法、变量の修饰符
- abstract 声明抽象
- class 类
- extends 扩允,继承
- final 终极,不可改变的
- implements实现
- interface 接口
- native 本地
- new 新,创建
- static 静态
- strictfp 严格,精准
- synchronized 线程,同步
- transient 短暂
- volatile 易失
- const
- assert
程序控制语句
- break 跳出循环
- continue 继续
- return 返回
- do 运行
- while 循环
- if 如果
- else 反之
- for 循环
- instanceof 实例
- switch 开关
- case 返回开关里的结果
- default 默认
- goto
错误处理
- catch 处理异常
- finally 有没有异常都执行
- throw 抛出一个异常对象
- throws 声明一个异常可能被抛出
- try 捕获异常
包相关
- import 引入
- package 包
基本类型
- boolean 布尔型
- byte 字节型
- char 字符型
- double 双精度,
- float 浮点
- int 整型
- long 长整型
- short 短整型
变量引用
- super 父类,超类
- this 本类
- void 无返回值
- enum 枚举类型
共有:3+15+13+5+2+8+4=50个关键字,全部是小写
结论:
- const、goto 是关键字,虽然没用,但不能拿来当变量名
- true、false、null 不是关键字,但也不能用来当变量名
- friendly、sizeof 不是关键字,可以用来当变量名