如何收集从抽象 class 创建的所有对象到数组列表中

How do I collect all the οbjects created from abstract class in a arraylist

如何收集从抽象 class 创建的所有对象到数组列表中?

这是我到目前为止尝试过的方法:

package exercice3;

import java.util.ArrayList;
import java.util.List;

public abstract class Personne {
    
    protected String nom ;
    protected String prenom ; 
    protected String adresse ;
    protected static int nbPersonnes = 0 ; 
    List<Personne> ListePersonnes = new ArrayList <>();
    
    public Personne(String nom , String prenom , String adresse) {
        
        this.nom= nom ; 
        this.prenom = prenom ; 
        this.adresse = adresse ; 
        nbPersonnes++;
        ListePersonnes.add(nbPersonnes, );
    }
}
public abstract class Personne {
           
    protected String nom ;
    protected String prenom ; 
    protected String adresse ;
    protected static int nbPersonnes = 0 ; 
    static List<Personne> ListePersonnes = new ArrayList<>();
    
    
    
    public Personne(String nom , String prenom , String adresse) {
        
        this.nom= nom ; 
        this.prenom = prenom ; 
        this.adresse = adresse ; 
        nbPersonnes++;
        ListePersonnes.add(this);  // <== use 'this' keyword
    
    }
 }