在Java中,可以使用循環結構來遍歷數組,并給數組元素賦值。以下是幾種常見的給數組元素賦值的方式:
int[] array = new int[5];
for (int i = 0; i < array.length; i++) {
array[i] = i + 1;
}
int[] array = {1, 2, 3, 4, 5};
int[] array = new int[5];
Arrays.fill(array, 5);
以上就是幾種常見的給數組元素賦值的方式,根據具體的需求選擇合適的方式即可。