web-dev-qa-db-ja.com

オブジェクトの配列リストの作成

ArrayListをオブジェクトで塗りつぶすにはどうすればよいですか?

48
Samuel
ArrayList<Matrices> list = new ArrayList<Matrices>();
list.add( new Matrices(1,1,10) );
list.add( new Matrices(1,2,20) );
65
Aaron Saunders

オブジェクトの配列リストを作成する方法。

オブジェクトを保存する配列を作成します。

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.
15
Jorgesys

ユーザーが多数の新しいMyObjectをリストに追加できるようにするには、forループを使用します。RectangleオブジェクトのArrayListを作成するとします。各Rectangleには、長さと幅の2つのパラメーターがあります。

//here I will create my ArrayList:

ArrayList <Rectangle> rectangles= new ArrayList <>(3); 

int length;
int width;

for(int index =0; index <3;index++)
{JOptionPane.showMessageDialog(null, "Rectangle " + (index + 1));
 length = JOptionPane.showInputDialog("Enter length");
 width = JOptionPane.showInputDialog("Enter width");

 //Now I will create my Rectangle and add it to my rectangles ArrayList:

 rectangles.add(new Rectangle(length,width));

//This passes the length and width values to the rectangle constructor,
  which will create a new Rectangle and add it to the ArrayList.

}

1
user9791370