gpt4 book ai didi

java - 在类中使用数组

转载 作者:行者123 更新时间:2023-12-01 17:36:29 26 4
gpt4 key购买 nike

为什么我可以这样做:

public class ThisTest {
int[] anArray = new int[10];
public int[] getArr(){
anArray[0] = 100;
anArray[1] = 200;
return anArray;
}
}

但不是:

public class ThisTest {
int[] anArray = new int[10];
anArray[0] = 100;
anArray[1] = 200;
}

最佳答案

因为您无法在方法或初始化 block 之外赋值。

所以这也是合法的:

public class ThisTest {
int[] anArray = new int[10];
{ // This is the initialization block
anArray[0] = 100;
anArray[1] = 200;
}
}

关于java - 在类中使用数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5746718/

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