數(shù)組

2019-06-27 13:47 更新

數(shù)組 1.聲明數(shù)組:

int[][] array = new int[2][3];
//或者:
int[][] array = new int[2][];
array[0] = new int [3];
array[1] = new int [2];

2.聲明并初始化數(shù)組:

int array[][] = { { 1, 2, 3 }, { 4, 5} };

3.使用數(shù)組:

System.out.println(array[0][1]);
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)