JavaFX如何将Math.round绑定一个数字?

时间:2016-09-21 13:50:14

标签: javafx javafx-8

如何在JavaFX中对绑定数字(double)进行舍入? 我需要将数字四舍五入到小数点后3位。所以我需要更改实际值而不是值的外观。 我基本上想要这样做:

 DoubleProperty a= new SimpleDoubleProperty(2.015);
 DoubleProperty b= new SimpleDoubleProperty(9.265);
 DoubleProperty c= new SimpleDoubleProperty();
 c.bind(Math.round(a.divide(b)*1000d)/1000d);

我可以做以下

c.bind(a.divide(b));

但这显然不会使数字四舍五入。 有任何想法吗? 谢谢。

1 个答案:

答案 0 :(得分:7)

c.bind(Bindings.createDoubleBinding(
    () -> Math.round(1000.0*a.get()/b.get())/1000.0,
    a, b));