好了,所以我在努力增加約120個左右的特定陣列的列表到一個數組列表 (這只是假設值和名稱,但相同的概念可能的Java For循環問題
private ArrayList<int[]> listofNames = new ArrayList<int[]>();
private static int[] NAME_0 = {x, x, x};
private static int[] NAME_1 = {x, x, x};
private static int[] NAME_2 = {x, x, x};
private static int[] NAME_3 = {x, x, x};
有沒有一種方法可以使用for循環來通過NAME_0來說NAME_120?
非常感謝您,簡單得多比添加到一個ArrayList – 2011-04-05 22:38:42
@Ben也少仿製藥麻煩。數組和泛型不太喜歡對方,所以最好不要混合它們。 – 2011-04-05 22:42:23