码迷,mamicode.com
首页 > 其他好文 > 详细

3 * 0.1 == 0.3 将会返回什么?true 还是 false?

时间:2019-12-30 18:58:54      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:void   完全   不能   log   print   class   浮点   https   out   

转自:https://www.cnblogs.com/areyouready/p/7802725.html
false,因为有些浮点数不能完全精确的表示出来

        public static void main(String[] args) {
        System.out.println(3 * 0.1);
        System.out.println(4 * 0.1);
        System.out.println(3 * 0.1 == 0.3);
        System.out.println(13 * 0.1 == 1.3);
        System.out.println(9 * 0.1 == 0.9);
        System.out.println(3 * 0.1 / 3);
    }    

        结果是:
        0.30000000000000004
        0.4
        false
        true
        true
        0.10000000000000002

3 * 0.1 == 0.3 将会返回什么?true 还是 false?

标签:void   完全   不能   log   print   class   浮点   https   out   

原文地址:https://www.cnblogs.com/HelloXTF/p/12121027.html

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