-4
private Aluno alunos[];
private int ultimaPosicao;
public int tam=5;
/**
* Construtor
*/
public VetorDeAlunos(){
alunos = new Aluno[tam];
ultimaPosicao = 0;
}
/**
* Metodo para inserir aluno na lista. Este metodo insere o aluno na ultima posiçao
* disponivel
* @params Aluno aluno - Aluno a ser inserido no vetor.
*
*/
public void inserir(Aluno aluno){
//o array estoura aqui
this.alunos[ultimaPosicao] = aluno;
ultimaPosicao++;
}
//in this algorithm has several test classes other buttons and etc... (DONE IN GREENFOOT)
What’s your question? What’s wrong with the code?
– user28595
the array pops into this.students[last] = student;
– A. Fernando