关键词:
abstract | assret | boolean | break | byte |
case | catch | char | class | const |
continue | default | do | double | else |
enum | extends | final | finally | float |
for | goto | if | implements | import |
unstance of | int | interface | long | native |
new | package | private | protected | public |
return | strictfp | short | static | super |
switch | synchronized | this | throw | throws |
transient | try | void | volatile | while |
java的所有组成部分都需要名字。
类名,变量名以及方法名都被成为标识符。
所有的标识符都应该以字母(A-Z或a-z),美元符($),或者下划线(_)开始
首字符之后可以是字母(A-Z或a-z),美元符($),下划线(_)或数字的任何字符组合
不能使用关键词作为变量名或方法名
标识符是大小写敏感的
合法标识符:age $salary _value __1_value
非法标识符:123abc -salary #abc
可以使用中文命名,但不建议使用中午和拼音,low