gpt4 book ai didi

JavacompareTo() 未定义运算符

转载 作者:行者123 更新时间:2023-12-01 20:52:40 27 4
gpt4 key购买 nike

我正在尝试编写比较两个成绩单的分数的代码,但每次我使用 > 或 < 这样的运算符时,它都会说参数类型未定义。有人可以告诉我我做错了什么吗?

编辑(来自评论):marksgetMarks的类型是double[]

 * @param other
* @return 1 if the average mark of calling object is more than average of parameter object
* -1 if the average mark of calling object is less than average of parameter object
* 0 if the average mark of calling object and the average of parameter object are the same
*/
public int compareTo(ReportCard other) {

if(this.marks > other.getMarks()) {
return 1;
} else if (this.marks < other.getMarks()) {
return -1;
} else {
return 0;
}
} //to be completed

最佳答案

您的代码可以简化为:

public int compareTo(ReportCard other) {
return Double.compare(this.getMarks(), other.getMarks());
}

或者,如果您想创建 Comparator<ReportCard>而不是实现 Comparable<ReportCard> ,那么你可以这样做:

Comparator<ReportCard> comparator = Comparator.comparingDouble(ReportCard::getMarks);

关于JavacompareTo() 未定义运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42923489/

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