i want to calculate size of object p in this example and size of p serialized:
public class Main {
    static public void main(String[] args) throws IOException {
        Personne p1 = new Personne("name1", "username1", 25);
        SrzDrz sr = new SrzDrz(p1, "file1");
        // Calculate size of(sr) and p1 ???
    }
}
Class Personne is :
public class Personne implements Serializable {
    static private final long serialVersionUID = 6L;
    private String nom;
    private String prenom;
    private Integer age;
    public Personne(String nom, String prenom, Integer age) {
        this.nom = nom;
        this.prenom = prenom;
        this.age = age;
    }
    public String toString() {
        return nom + " " + prenom + " " + age + " years";
    }
}
Class SrzDrz is :
public class SrzDrz {
    SrzDrz(Personne p, String name) throws IOException {
        FileOutputStream fos = new FileOutputStream(name);
        ObjectOutputStream oos = new ObjectOutputStream(fos);
        try {
            oos.writeObject(p);
            oos.flush();
            System.out.println(p + " serialized");
        } finally {
            try {
                oos.close();
            } finally {
                fos.close();
            }
        }
    }
}
 
     
    