gpt4 book ai didi

java - 整数对象未在比较器的比较函数中进行比较

转载 作者:行者123 更新时间:2023-11-29 04:21:31 24 4
gpt4 key购买 nike

<分区>

class MyComparator<Integer> implements Comparator<Integer>
{

@Override
public int compare(Integer o1, Integer o2) {
if(o1>o2) // line no 3
return 1;
else if(o1==o2)
return 0;
else
return -1;
}
}

在第 3 行,既没有拆箱发生,也无法调用 intValue()。请帮助理解这一点。

第3行,编译错误来了。

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