1、关键字的概念
关键字:其实就是某种语言赋予了特殊含义的单词。
保留字:其实就是还没有赋予特殊含义,但是准备日后要使用过的单词。
2、Java语言有51个关键字,不能使用保留关键字来命名类、方法或变量
1、数据类型
boolean int long short byte float double char class interface
2、流程控制
If else do while for switch case default break continue returntrycatchfinally
3、修饰符
public protected private final void static strictfp abstract transient synchronized volatile native
4、操作
Package import throw throws extends implements this super instanceof new
原文:http://11973229.blog.51cto.com/11963229/1839687