gpt4 book ai didi

java - 为什么我的代码会导致编译错误?

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

关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。












想改进这个问题?将问题更新为 on-topic对于堆栈溢出。

3年前关闭。




Improve this question




有问题的代码如下:

importjava.util.ArrayList;
importjava.util.Collections;
importjava.util.List;

public class Test{
public static void main(String[] args) {
List<Human> humans= newArrayList<Human>();
humans.add(newHuman(13));
humans.add(newHuman(33));
humans.add(newHuman(21));
humans.add(newHuman(21));
Collections.sort(humans);
System.out.print(humans.get(0).age);
System.out.print(humans.size());
}
}
class Human implements Comparable<Human> {
int age;
public Human(int age) {
this.age = age;
}
public int compareTo(Human h) {
return h.age.compareTo(this.age);
}
}

我想知道为什么这段代码会导致编译错误?我不确定我哪里出错了。

一些额外的细节:

最佳答案

像 shrot、int、long、double 这样的原始类型不实现 Comparable 接口(interface)。使您的实例变量对象类型。导入也会发生变化,同时创建新对象(new Human(13))。

    import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

public class Test{
public static void main(String[] args) {
List<Human> humans= new ArrayList<Human>();
humans.add(new Human(13));
humans.add(new Human(33));
humans.add(new Human(21));
humans.add(new Human(21));
Collections.sort(humans);
System.out.print(humans.get(0).age);
System.out.print(humans.size());
}
}
class Human implements Comparable<Human> {
Integer age;
public Human(int age) {
this.age = age;
}
public int compareTo(Human h) {
return h.age.compareTo(this.age);
}
}

关于java - 为什么我的代码会导致编译错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52966289/

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