希望对楼主有帮助!
定义数据类型关键字:
class interface byte long short int float double char boolean void
定义数据类型值得关键字;
true false null
定义流程控制得关键字:
if else switch case default while do for break continue return
定义访问权限修饰符的关键字:
public private protected
定义类,函数,变量修饰符的关键字:
abstract final static synchronized
定义建立实例以及引用实例,判断实例的关键字:
new this super instanceof
用于异常处理的关键字:
throw throws try catch finally
用于包的关键字
package import
其他修饰符关键字
native strictfp transient volatile assert |