web-dev-qa-db-fra.com

Créer une liste d'objets

Comment remplir une ArrayList avec des objets, chaque objet à l'intérieur étant différent?

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

Comment créer une liste d'objets.

Créez un tableau pour stocker les objets:

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

En une seule étape:

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

ou

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

Si vous souhaitez autoriser un utilisateur à ajouter une série de nouveaux MyObjects à la liste, vous pouvez le faire avec une boucle for: supposons que je crée une liste ArrayList d'objets Rectangle et que chaque rectangle a deux paramètres: longueur et largeur.

//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