标签: java arraylist
宣布
List list= new ArrayList<MyObject>(); MyObject mo = new MyObject(); mo.setFieldOne("A"); list.add(mo);
为什么结果包含null elementData?