值是否可能不同?

时间:2019-12-27 06:52:12

标签: java spring-boot formatting

我正在使用Java Spring Boot连接MySQL DB。我也想比较今天的数据和昨天的数据

    Double formattedValue = null;
    formattedValue = Double.parseDouble(String.format("%.10f",super.getTable().getPs()));
    kIHTable.setPercentage(formattedValue);
    kIHTable.setPercentageBefore(formattedValue);

这是我获取价值的代码

但是我对此感到好奇

kIHTable.setPercentage(formattedValue);
kIHTable.setPercentageBefore(formattedValue);

值是不同的。我期望值相同。

有可能吗?还是什么问题?值形式为双精度格式,通常具有十个以上的小数位。但我更改的位数少于10位。

0 个答案:

没有答案