1. 程式人生 > >Java 數組

Java 數組

com http 列表 wid cnblogs new t col 方式 height

1. 數組: 形同類型數據的集合叫做數組

2 定義數組的方式

2.1 int[] a = new int[10];

2.2 int a[] = new int[10]

2.3 type[] 變量名 ={new type[]} {逗號分割的初始化列表};

紅色可以省略 type[] 變量名 = {逗號分割的初始化列表};

3. 對象數組

Person[] p = new Person[3];

其中Person為類

技術分享

Java 數組