标签: java precision
float f = 10.28f; System.out.println(f); // 10.28
为什么使用浮点数时精度不会丢失??
double d = f; // 10.279999732971191
在这里我可以理解精度的损失。