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

java面试---自动装箱

时间:2015-07-21 01:17:50      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

package generic;

public class AutoBoxTest {

    public static void main(String[]args){
        Integer a = 1;
        Integer b = 2;
        Integer c = 3;
        Integer d = 3;
        Integer e = 321;
        Integer f = 321;
        Long g = 3L;
        System.out.println(c==d);
        System.out.println(e==f);
        System.out.println(c==(a+b));
        System.out.println(c.equals(a+b));
        System.out.println(g==(a+b));
        System.out.println(g.equals(a+b));
        /**
         * true
            false
            true
            true
            true
            false

         */
    }
}

 

java面试---自动装箱

标签:

原文地址:http://www.cnblogs.com/lucystudy/p/4663169.html

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