java所有的组成部分都需要名字。类名变量名以及方法名都称之为标识符。
关键字abstract、assert、boolean、break、byte、case、catch、char、class、const、continue、default、do、double、else、enum、extends、final、finally、float、for、goto、if、impelments、import、instanceof、int、interface、long、native、new、package、private、protected、public、return、strictfp、short、static、super、switch、synchronized、this、throw、throws、transient、try、void、volatile、while
标识符注意点1、所有标识符都应以字母(a-z或A_Z)、美元符($)、或者下划线(_)开始
2、首字符之后可以是字母,美元符、下划线或数字的任何字符组合
3、不能使用关键字作为变量名或方法名
4、标识符是大小写敏感的
5、可以使用中文名命名,但不建议,也不建议使用拼音



