Salve ragazzi, come faccio a testare un metodo di una classe che non ha degli attributi ? Grazie mille
Codice:
public String[] migliori(){
String[] migliore;
int r = this.nome.length;
int c = this.materia.length;
migliore = new String[c];
for (int j=0; j<c; j++){
double max = this.voto[0][j];
migliore[j]= this.nome[0];
for (int i=1; i<r; i++)
if (this.voto[j] > max){
max = this.voto[j];
migliore[j] = this.nome;
}
}
return migliore;
}
Ultima modifica di un moderatore: