java中包装类的解释_Java中的包装类和通用说明

参见英文答案 >

How to properly compare two Integers in Java?                                    8个

在下面的代码中,行System.out.println(sumInteger(bigs)== sumInteger(bigs));显示为false.但是当我们再次比较另一个Integer包装类System.out.println(bc == ab);时,它返回true.为什么在第一种情况下包装类的比较为false而在第二种情况下为true?

import java.util.Arrays;

import java.util.List;

public class Arrays {

public void array1() {

List bigs = Arrays.asList(100,200,300);

System.out.println(sumInteger(bigs) == sum(bigs)); // 1. Output: true

System.out.println(sumInteger(bigs) == sumInteger(bigs)); //2. Output: false

Integer ab = 10;

System.out.println(ab == 10); //3. Output: true

Integer bc = 10;

System.out.println(bc == ab); //4. Output: true

}

public static int sum (List ints) {

int s = 0;

for (int n : ints) { s += n; }

return s;

}

public static Integer sumInteger(List ints) {

Integer s = 0;

for (Integer n : ints) { s += n; }

return s;

}

public static void main(String[] args) {

Array tm = new Array();

tm.array1();

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值