I would like to know if there are any semantically speaking differences between these two constructors:
public Aluno(String n, float n1, float n2) {
this.nome = n;
this.setNota1(n1);
this.setNota2(n2);
}
and
public Aluno(String n...
asked by
02.11.2015 / 03:20