扩展
java代码
进制
二进制:数前加0b
八进制:数前加0
十六进制:数前加0x 0~9 A~F
int i = 10;
int i = 010;
int i = 0x10;
浮点数扩展
float 有限 离散 舍入误差 大约
最好完全避免使用浮点数进行比较
float f = 0.1f; //0.1
double d = 0.1/1.0; //0.1
System.out.println(f==d);
float d1 = 23131312312312313f;
float d2 = d1 + 1;
System.out.println(d1==d2);
字符扩展
所有的而字符本质还是数字
编码 Unicode 表:(97 = a 65 = A) 2字节 0 - 65536 Excel表最多 2 16 = 65536
char c1 = 'A';
char c2 = '中';
System.out.println(c1);
System.out.println((int)c1);//强制转换
System.out.println(c2);
System.out.println((int)c2);//强制转换
//U0000 UFFFF
char c3 = '\u0061';
System.out.println(c3);