我有一些Model
類,我試圖用它們聲明一個列表,但是我得到了Array initializer is not allowed here
。什麼是簡單的解決方法?數組初始值設定在這裏是不允許的
...
public class M1 extends Model {}
public class M2 extends Model {}
...
List<Model> mObj = new ArrayList<Model>({M1, M2}) //expression expected
...
+1爲正確的答案原來的問題。 – Bala 2014-09-25 13:09:56