gpt4 book ai didi

java - 不能使用变量来定义数组值吗?

转载 作者:行者123 更新时间:2023-12-01 19:06:21 26 4
gpt4 key购买 nike

所以我遇到了一个问题,Java 告诉我以下行是表达式的非法开头,而不是语句和“;”预期等...

表达式为:

Random rand = new Random();
int[][] coords = new int[24][2];
start = rand.nextInt(16);
coords[0][0]={0,start};

这个表达有什么问题吗?

最佳答案

coords[0][0]={0,start}; 中,{0, start} 根本不是一个有效的表达式。它看起来就像您正在尝试初始化数组的第一行,在这种情况下,您正在寻找以下内容:

Random rand = new Random();
int[][] coords = new int[24][2];
start = rand.nextInt(16);
coords[0][0] = 0;
coords[0][1] = start;

关于java - 不能使用变量来定义数组值吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9918708/

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