首页 > 移动平台 > 详细

Java 中包装类wrapped type之间以及和primitive type的比较

时间:2015-06-09 00:50:50      阅读:231      评论:0      收藏:0      [点我收藏+]

注意, 包装类的实例之间比较, 是不能直接用 == 的

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Integer a = new Integer(1);
        Integer b = new Integer(1);
        int c=1;
        Integer e = 1;
        System.out.println("a==b:"+(a==b));
        System.out.println("a==c:"+(a==c));
        System.out.println("a==e:"+(a==e));
        System.out.println("c==e:"+(c==e));
    }

结果:
a==b:false
a==c:true
a==e:false
c==e:true

Java 中包装类wrapped type之间以及和primitive type的比较

原文:http://www.cnblogs.com/milton/p/4562339.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!