创建对象的数组列表

2022-08-31 16:38:38

如何用对象填充 ArrayList,其中每个对象都是不同的?


答案 1
ArrayList<Matrices> list = new ArrayList<Matrices>();
list.add( new Matrices(1,1,10) );
list.add( new Matrices(1,2,20) );

答案 2

如何创建对象的数组列表。

创建一个数组来存储对象:

ArrayList<MyObject> list = new ArrayList<MyObject>();

只需一个步骤:

list.add(new MyObject (1, 2, 3)); //Create a new object and adding it to list. 

MyObject myObject = new MyObject (1, 2, 3); //Create a new object.
list.add(myObject); // Adding it to the list.