gpt4 book ai didi

java - 尝试创建数组列表的数组列表,但遇到此错误 :

转载 作者:行者123 更新时间:2023-11-30 03:17:33 27 4
gpt4 key购买 nike

x.add(al1) 上的“标记 'al1 上存在语法错误,此标记后应有 VariableDeclaratorID”;线。知道为什么会发生这种情况吗?忽略第 3 行

import java.util.ArrayList;
public class GameState {//creates a list of the three coins to work with
private ArrayUnsortedList<Coin> coins = new ArrayUnsortedList<Coin>(3);
private ArrayList<ArrayList<Integer>> x = new ArrayList<ArrayList<Integer>>(3);
private ArrayList<Integer> al1 = new ArrayList<Integer>();
private ArrayList<Integer> al2 = new ArrayList<Integer>();
private ArrayList<Integer> al3 = new ArrayList<Integer>();
x.add(al1);

最佳答案

是的。它不在 initializing block 中(我认为这就是你想要的)。类似的东西

{
x.add(al1);
}

它将被复制到任何构造函数中(因此您可以将其放入构造函数中)。

关于java - 尝试创建数组列表的数组列表,但遇到此错误 :,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32212802/

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