gpt4 book ai didi

java - 实现接口(interface)

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

大家好,所以我有这个任务,我需要实现接口(interface)来遍历 ArrayList 并对它进行排序(升序或降序)。我不想要“那个”答案我只需要一些关于我的方法的建议以及为什么我得到这个错误

Exception in thread "main" java.lang.ClassCastException: Week7.Check cannot be cast to java.lang.Comparable
at java.util.Arrays.mergeSort(Unknown Source)
at java.util.Arrays.sort(Unknown Source)
at java.util.Collections.sort(Unknown Source)
at Week7.TestCheck.main(TestCheck.java:18)

我是这样做的:

comparable 有一个名为 public int compairTo(Object o) 的方法:

public class Check implements comparable {
private Integer checkNumber;

public Check(Integer newCheckNumber) {
setCheckNumber(newCheckNumber);
}

public String toString() {
return getCheckNumber().toString();
}

public void setCheckNumber(Integer checkNumber) {
this.checkNumber = checkNumber;
}

public Integer getCheckNumber() {
return checkNumber;
}

@Override
public int compairTo(Object o) {
Check compair = (Check) o;
int result = 0;
if (this.getCheckNumber() > compair.getCheckNumber())
result = 1;

else if (this.getCheckNumber() < compair.getCheckNumber())
result = -1;

return result;
}
}

在我的主要我有这个

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

public class TestCheck {
public static void main(String[] args) {
ArrayList checkList = new ArrayList();

checkList.add(new Check(445));
checkList.add(new Check(101));
checkList.add(new Check(110));
checkList.add(new Check(553));
checkList.add(new Check(123));

Collections.sort(checkList);

for (int i = 0; i < checkList.size(); i++) {
System.out.println(checkList.get(i));
}
}
}

最佳答案

C'mon - Java 区分大小写。 “可比”不等于“可比”

public class Check implements comparable

拼写也很重要。 “compairTo”与“compareTo”的方法不同

@Override
public int compairTo(Object o) {

关于java - 实现接口(interface),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2841284/

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