gpt4 book ai didi

java - 错误 : cannot find symbol ArrayList

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:31:10 34 4
gpt4 key购买 nike

我正在尝试创建某种列表来存储数组“表”中的值。 (我在这里使用的是数组列表,但我应该使用列表吗?)但是,每次我尝试编译时,它都会抛出以下错误:

找不到符号符号:类 ArrayList位置:类players.TablePlayer

代码如下。

public class TablePlayer extends Player {

int[][] table;
ArrayList goodMoves;


public TablePlayer(String name) {
super(name);
}

@Override
public int move() {
int oppLast = opponentLastMove();
int myLast = myLastMove();
if (!isLegalMove(oppLast)) {
return 0; // temporary
}
if (wonLast()) {
table[oppLast][myLast] = 1;
table[myLast][oppLast] = -1;
}
if ((wonLast() == false) && (oppLast != myLast)) {
table[oppLast][myLast] = -1;
table[myLast][oppLast] = 1;
}
for (int i = 0; i < table.length; i++) {
for (int j = 0; j < table.length; j++) {
if (table[i][j] == 1) {
goodMoves.add(table[i][j]);
}
}
}

return oppLast; // temporary
}

@Override
public void start() {
int[][] table = new int[7][7];
ArrayList<int> goodMoves = new ArrayList<int>();
}
}

任何帮助都会很棒,谢谢!

最佳答案

文件顶部是否有导入语句?

import java.util.ArrayList;

关于java - 错误 : cannot find symbol ArrayList,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15789361/

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