基本数据类型包括 整数类型 ------------ 1个字节:byte
------------ 2个字节:short
------------ 4个字节:int
------------- 8个字节:long
字符类型 ------------- 2个字节:char
浮点类型 ------------- 4个字节:float
------------- 8个字节:double
布尔类型 1位:boolear
1.自动类型转换:将表数范围小的,直接赋值给表数范围大的为自动类型转换
char-------------->
int->long->float->double(双精度)
byte->short ---->
ps: 希望把基 本类型的值转换为对应的字符串时,可以把基本类型的值和一个空字符串连接
sout("hr"+3+4)----------------hr34 3,4均为字符串处理
sout(3+4+"hr")----------------7hr
字符串与基本数据类型之间有 + 是连接运算
sout('a'+7+"hr")--------104hr
2.强制转换 1中箭头反转
String 转 基本数据类型 一般是包装类 parseXxx(String str)
3.整数/0 报异常
浮点数/0.0(或0) 不报异常,但是结果是无穷大或无穷小