1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
Personne[] tabPersonne=new Personne[3];
int index=0;
Personne tempPersonne=new Personne();
tempPersonne.setName("Dupont");
tempPersonne.setId("12323");
tabPersonne[index]=tempPersonne;
index++;
tempPersonne=new Personne();
tempPersonne.setName("Durand");
tempPersonne.setId("45654");
tabPersonne[index]=tempPersonne;
index++;
tempPersonne=new Personne();
tempPersonne.setName("Martin");
tempPersonne.setId("567657");
tabPersonne[index]=tempPersonne;
index=0;
while (index<tabPersonne.length) {
System.out.println(tabPersonne[index].getName());
index++;
} |