2012年11月8日 星期四

陣列-array

陣列的概念,就像是準備很多箱子,用來存放資料
它的特性是,「一次可以存放大量同性質資料」

例如
int[] test;
宣告了一個陣列變數

test = new int[5];
準備了五個空間,每個都可以儲存int型態的資料

當然也可以寫在一起
int[] test = new int[5];

沒有留言:

張貼留言