2 차원 배열
arr 라 는 2 차원 배열 을 정의 합 니 다.2 차원 배열 에는 3 개의 1 차원 배열 이 있 고 1 차원 배열 마다 4 개의 요소 가 있다.
package com.zwj;
public class Demo {
public static void main(String[] args) {
//int[] arr = new int[3]; //
int[][] arr = new int[3][4];// arr 。 3 。
//
System.out.println(arr[0][1]); //
/**
int[][] arr = new int[3][];
arr[0] = new int[3];
arr[1] = new int[1];
arr[2] = new int[2];
System.out.println(arr.length);// 3
System.out.println(arr[0].length);//
*/
int[][] arr1 = {{12,2,3,1},{2,1,5}}; //
int sum = 0;
for(int x=0; x<arr.length; x++){
for(int y=0; y<arr[x].length; y++){
sum = sum + arr[x][y];
}
}
System.out.println("sum=" + sum); //
/**
* :
:int[][]y;int y[][];int[]y[];
int[]x,y[]; //x ,y , int[] x; int[]y[];
a.x[0]=y //no
b.y[0]=x //yes
c.y[0][0]=x; //yes
d.x[0][0]=y; //no
e.y[0][0]=x[0]; //yes
f.x=y //no
*/
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.