陣列是相同資料型別的資料按順序組成的一種引用資料型別。
宣告一維陣列:陣列元素資料型別 [ ] 陣列名;
string countryarray;
宣告二維陣列:陣列元素資料型別[ ][ ] 陣列名;
double
wagesarray;
1.陣列分配記憶體空間時指明陣列長度,語法格式:陣列名 = new 陣列元素資料型別 [陣列元素個數];
double score = new
double[3];
string account = new
string[3] [2];
2.採用窮舉法例項化陣列:
double score_1 = ;
double score_2 = new
double ;
string account_1 = ,,};
3.先宣告,後例項化
double score_3;
// //score_3 = ;不能這麼賦值
score_3 = new
double ;
//運算元組
double scores = new
double [3];
//如何給陣列賦值
scores[0] = 2.4;
scores[1] = 3.2;
scores[2] = 5.3;
//scores[3] = 8.1;如果溢位則會報錯
用for迴圈遍歷陣列
迴圈陣列
//①傳統for迴圈
for(int i=0;i<5;i++)
//②增強for迴圈
for(double score:scores)
//二維陣列
string accounts_1 = ,,};
for(string account:accounts_1)
system.out.println();
}string accounts_2 = ,,};
for(int i=0;i<3;i++)
system.out.println();
}
Java陣列基礎
1,初始化陣列 可以初始化為int,char,string 型別 靜態初始化 int array new int 或者 int array 動態初始化 int array new int 5 系統預設陣列的每個元素值都為02,arry i 陣列的元素下角標從0開始到到i 1 3,system.out...
Java基礎陣列
1.陣列 概念同一種型別資料的集合。其實陣列就是乙個容器。陣列的好處 可以自動給陣列中的元素從0 開始編號,方便操作這些元素。格式1 元素型別 陣列名 new 元素型別 元素個數或陣列長度 示例 int arr new int 5 格式2 元素型別 陣列名 new 元素型別 int arr new ...
Java基礎 陣列
注 計算機中的索引大多都是從0開始,而不是1 資料型別 陣列名 資料型別 陣列名 int array int array 以上建立了陣列,但是任然不能直接使用,因為還沒有分配記憶體 分配記憶體,其實就是給陣列指定堆中的大小 array new int 10 在new的過程其實就是在堆記憶體中開闢一片...