关键字:

Java 语言中已经事先定义好了的,有着特殊含义和用途

访问控制类、方法和变量修饰符程序控制异常处理包相关基本类型变量引用
publicabstractbreaktryimportbooleansuper
privateclasscontinuecatchpackagebytethis
protectedextendsreturthrow charvoid
 finaldothows double 
 implementswhile  float 
 interfaceif  int 
 nativeelse  long 
 newfor  short 
 staticinstanceof  null 
 strictfpswitch  true 
 synchronizedcase  false 
 transientdefault    
 volatile     

保留字:也是 Java 语言中事先定义好的,但是现在没有任何用途

保留下来的,说不定某天会给予它们用途

两个保留字:goto、const

05-15 17:43