지정된 배열의 깊은 내용에 대한 문자열 표현을 반환하려면 -
예시
import java.util.Arrays;
public class Demo {
public static void main(String[] args) {
Object[] ob = {"One","Two", "Three", "Four"};
System.out.println("Array elements...");
for (Object value : ob) {
System.out.println("Value = " + value);
}
System.out.println("The string representation of array is:");
System.out.println(Arrays.deepToString(ob));
}
} 출력
이것은 다음과 같은 출력을 생성합니다 -
Array elements... Value = One Value = Two Value = Three Value = Four The string representation of array is: [One, Two, Three, Four]
예시
이제 다른 예를 살펴보겠습니다 -
import java.util.Arrays;
public class Demo {
public static void main(String[] args) {
int[][] arr = new int[3][3];
arr[0][0] = 10;
arr[0][1] = 20;
arr[0][2] = 30;
arr[1][0] = 40;
arr[1][1] = 50;
arr[1][2] = 75;
arr[2][0] = 100;
arr[2][1] = 150;
arr[2][2] = 200;
System.out.println(Arrays.deepToString(arr));
}
} 출력
이것은 다음과 같은 출력을 생성합니다 -
[[10, 20, 30], [40, 50, 75], [100, 150, 200]]