1.用于定义数据类型的关键字
class interface byte short int long float double char boolean void
2.用于定义数据类型值的关键字
true false null
3.用于定义流程控制的关键字
if else switch case default while do for break continue return
4.用于定义访问权限修饰符的关键字
private protected public
5.用于定义类,函数,变量修饰符的关键字
abstract final static synchronized
6.用于定义类与类之间的关键字
extends implements
7.用于定义建立实例及引用实例,判断实例的关键字
new this super instanceof
8.用于异常处理的关键字
try catch finally throw throws
9.用于包的关键字
package import
10.其他修饰符关键字
native strictfp transient volatile assert
11.保留关键字
goto const
PS:这是我做的笔记