用于定义访问权限修饰符的关键字:public protected default private;
用于定义类、函数、变量修饰符的关键字:abstract final static synchronize(同步标记);
用于定义类与类之间关系的关键字:extends implements ;
用于定义建立实例及引用实例、判断实例的关键字:new this super instanceof(判断左边对象是否是右边类的实例) ;
用于异常处理的关键字:try catch finally throw throws (throw和throws的区别:throw是在代码块内的,即在捕获方法内的异常并抛出时使用的;throws是针对方法的,即将方法的异常信息抛出去;可以理解为throw是主动地(在方法内容里我们是主动捕获并throw的),而throws是被动的(在方法上是没有捕获异常进行处理,直接throws的))
其他修饰符关键字:native strictfp transient volatile assert
goto和const为关键字,但目前没有特定意义