자바에서 배열을 지정한 값으로 초기화하는 방법이다.
1. 1차원 배열 int[ ] 채우기
public static void main(String[] args) {
int[] a = new int[5];
Arrays.fill(a, 100); //100으로 일괄 초기화
for(int i : a) {
System.out.print(i +" ");
}
}
2. 2차원 배열 int[ ][ ]채우기
public static void main(String[] args) {
int[][] b = new int[5][5];
for(int i = 0; i < b.length; i++) {
Arrays.fill(b[i], 100);
}
//출력
for(int[] i : b) {
for(int j : i) {
System.out.print(j +" ");
}
System.out.println();
}
}