自定义类的 ArrayList 没有 .add() 方法:
我可以定义一个对象的 ArrayList:
ArrayList<Object> thing = new ArrayList<Object>();
thing.add(otherThing); // works
但是,当我定义自定义类事物的列表时:
ArrayList<Thing> thing = new ArrayList<Thing>();
thing.add(otherThing); // error
Canvas.java:33: cannot find symbol
symbol : method add(java.lang.Object)
location: class java.util.ArrayList<Thing>
thing.add(otherThing);
^
1 error
这可能吗?
谢谢