变量命名:
1.字母,下划线,美元 做为开头
2.字母,下划线,美元,数字 做为其余部分
基本类型
byte short int long float double boolean char
byte:占1个字节,-2^7 - 2^7-1
short:占2个字节,-2^15 - 2^15-1
int:占4个字节,-2^31 - 2^31-1
long:占8个字节,-2^63 - 2^63-1
float:float x = 1.0f
double:double x = 1.0
boolean:只能用false和true
char:由于java字符使用unicode编码,所以可以使用2个字节,并且可以使用16进制和转移字符
转移字符:
/n /t /b // / ' /"