1、 Java 保留关键字原始数据类型:byte 字节 short 短整型 int 整型 long 长整型float 浮点型(单精度) double 浮点型(双精度)char 字符 boolean 布尔型(有 true 和 false 两种类型)循环关键字:do do 循环while while 循环for for 循环break 停止,结束循环continue 结束当前循环分支关键字:if if 语句else idelse 语句switch switch 语句case 当情况下(用在 switch 语句中)default 缺省的(也用在 switch 语句中)break 停止(用在 switch
2、 语句中)方法、变量和类修饰符:private 私人的public 公共的protected 受保护的final 最终的static 静态的abstatic 异常处理:try catch 抓住finally 最终的throw 刨除异常throws 字面值常量:false 假的 true 真的 null 空的对象相关的关键字:new 新的(实例化一个类)extends 继承implements 工具class 类instanceof 例子thissuper 大的方法相关的关键字:return 返回值 void 返回值 空的包相关的关键字:package 包 import 重要的其他关键字:transient 短暂的volatilesynchronized 线程同步native 本地的strictfp goto const