gpt4 book ai didi

java - 只需要一些关于 .equals 的启示

转载 作者:行者123 更新时间:2023-12-02 00:48:15 25 4
gpt4 key购买 nike

Integer a = new Integer(1);
Integer b = new Integer(1);
Long c = new Long(1);

System.out.println(a.equals(b));
System.out.println(a.equals(c));

问题是为什么 a.equals(c) 给出 false?

最佳答案

来自Integer.equals() :

The result is true if and only if the argument is not null and is an Integer object that contains the same int value as this object.

c 不是 Integer,因此 a.equals(c) 返回 false

关于java - 只需要一些关于 .equals 的启示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23060464/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com