码迷,mamicode.com
首页 > 编程语言 > 详细

java float问题

时间:2015-05-27 19:05:45      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:java   float   

代码

public static void main(String[] args) {
int a = (int) ((1000.0 * 60 + 2000.0) * 1.4f);
System.out.println(a);
}

技术分享

输出技术分享   86799

然后这样的话

public static void main(String[] args) {
int a = (int) ((1000.0 * 60 + 2000.0) * 1.4);
System.out.println(a);
}

技术分享

输出技术分享    86800

86800才是正确的,float丢精度了不能乱用啊!!!!!

java float问题

标签:java   float   

原文地址:http://blog.csdn.net/guobangli/article/details/46050315

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!