gpt4 book ai didi

java - 无法使用 ArrayList 中对象的方法

转载 作者:行者123 更新时间:2023-12-02 04:11:54 24 4
gpt4 key购买 nike

这是我创建卡片的地方

    package javaapplication21;

公开课卡{

private String Name = null;
private String Description = null;
private String Type = null;

public Card(int i, int j) {

if (i == 0) {
Type = "Spades";
} else if (i == 1) {
Type = "Diamonds";
} else if (i == 2) {
Type = "Hearts";
} else if (i == 3) {
Type = "Clubs";
}

int Value = j;
if (j == 11) {
Name = "Jack";
} else if (j == 12) {
Name = "Queen";
} else if (j == 13) {
Name = "King";
} else if (j == 1) {
Name = "Ace";
} else if (j == 14) {
Name = "Joker";
} else {
Name = "" + Value;
}

}

公共(public)字符串 getDescription() {

    Description="Its a"+Name+"of"+Type;
return this.Description;
}

}

    package javaapplication21;
import java.util.ArrayList;
public class JavaApplication21 {


public static void main(String[] args) {
ArrayList Deck=new ArrayList<Card>();
for (int i = 0; i < 4; i++) {
for (int j = 1; j < 15; j++) {
new Card(i, j);
Deck.add(new Card(i, j));


}
}
System.out.println(Deck.get(5).getDescription());

}

}

尝试使用牌组索引 5 中卡片对象的 getDescription 时出现错误(找不到符号)。我是编程新手,但我真的不知道问题出在哪里。

最佳答案

数组列表不知道存储对象的类型。你必须定义类型。

ArrayList<Card> deck = new ArrayList<Card>();

关于java - 无法使用 ArrayList 中对象的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33711099/

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