I have these 3 constructors in a java class, as it would be the correct way to make one call the other, that is, call the default, that it calls the next one with fewer parameters and the latter to which it has all the parameters example:
public Correo(String from, String to, String asunto, String texto) {
this.from = from;
this.to = to;
this.asunto = asunto;
this.texto = texto;
this.leido = false;
this.fecha.getDate();
}
public Correo() { }
public Correo(String from) {
this.from = from;
}