Questions tagged «floating»

10
将double转换为Java中的float
我面临与转换double为相关的问题float。实际上,我将浮点类型存储23423424666767在数据库中,但是当我们通过下面的代码从数据库中获取数据时getInfoValueNumeric(),它是double类型。我们获得的价值以2.3423424666767E13表格的形式出现。 那么我们如何获得float像这样的格式数据23423424666767呢? 2.3423424666767E13 to 23423424666767 public void setInfoValueNumeric(java.lang.Double value) { setValue(4, value); } @javax.persistence.Column(name = "InfoValueNumeric", precision = 53) public java.lang.Double getInfoValueNumeric() { return (java.lang.Double) getValue(4); }
76 java  double  floating 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.