【常量】计算机在处理过程中,没有变化的量/数据


byte:-128~+127
short
int:129
long
float:1.5f(一定要加f,不然小数默认为是double型)
double:4.5、4.5d
char:‘s’、‘1’(注意一定要加单引号,否则1就是整型了)(单引号)
boolean:true、false


“hello word”字符串常量(双引号)