1. 程式人生 > >Day6 陣列

Day6 陣列

陣列的定義:儲存一組相同型別的資料
陣列型別[ ] 陣列名 = new 陣列型別 [陣列的長度];
int[] scores = new int[3];
scores[0]=80;
scores[1]=90;
scores[2]=100;
//int[3]=100; 陣列下標越界
int[]scores=new int[]{80,90,100};
int[]scores={80,90,100};
陣列元素分配的初始值
整型的預設值:0;
浮點型的預設值:0.0
char的預設值:’\u0000’
boolean:false;
String的預設值:null