标签: java floating-point
在JVM浮点值存储在二进制系统中。但它究竟是如何存储的? 例如。
int value = Math.pow(10,8) + 1; float f = value; int back = (int)f;
返回值等于10 ^ 8。 哪里是1