无法解析方法“compareto(int)”

bogh5gae  于 2021-07-06  发布在  Java
关注(0)|答案(1)|浏览(845)

**结案。**此问题不可复制或由打字错误引起。它目前不接受答案。
**想改进这个问题吗?**更新问题,使其成为堆栈溢出的主题。

上个月关门了。
改进这个问题
我正在尝试使用气泡排序和compareto方法对对象数组进行排序。if条件中的“compareto”不起作用,并且说无法解析方法“compareto(int)”,如何修复此问题?
我的排序方法:

public static void sort(Card[] hand) {

    for (int i = 1; i < hand.length; i++) {
        for (int j = 0; j < hand.length - i; j++) {
            if (((hand[j].getRankValue()).compareTo((hand[j + 1].getRankValue()))) > 0) {
                Card temp = hand[j];
                hand[j] = hand[j + 1];
                hand[j + 1] = temp;
            }
        }
    }
}
``` `public class Card {` ```
public final int suit;
public final int rank;
public int rankValue = 0;

public static final String[] SUIT = {
        "Hearts", "Clubs", "Diamonds", "Spades"};

public static final String[] RANK = {
        "2", "3", "4", "5", "6", "7",
        "8", "9", "10", "Jack", "Queen", "King", "Ace"};

public Card(int rank, int suit) {
    this.rank = rank;
    this.suit = suit;
    this.rankValue = getRankValue();
}

public int compareTo(Card other){
    if(getRankValue() > other.getRankValue()) return 1;
    else if(getRankValue() < other.getRankValue()) return -1;
    else return 0;
}

public int getRank(){
    return this.rank;
}

public int getSuit(){
    return this.suit;
}

public int getRankValue() {
    return this.suit * 13 + this.rank - 1;
}

public String toString() {
    return RANK[this.rank] + " of " + SUIT[this.suit];
}

}

icnyk63a

icnyk63a1#

你的 compareTo() 函数比较两张卡片,所以你不需要任何卡片 getRankValues() 在你的 if 声明。如果你摆脱了这些,你的代码应该可以工作。

相关问题