I have the class Aluno
.
public class Aluno {
private String nome;
@Override
public String toString() {
return this.nome;
}
//metodos getters e setters
}
Class Vetor
public class Vetor {
private Aluno[] alunos = new Aluno[5];
public void Adiciona(Aluno aluno) {
for(int i = 0; i < alunos.length; i++) {
if(alunos[i] == null) { //encontrou uma posicao vazia
alunos[i] = aluno;
break;
}
}
public int tamanho() {
return this.alunos.length;
}
@Override
public String toString() {
if(this.alunos.length == 0) {
return "[]";
}
StringBuilder builder = new StringBuilder();
builder.append("[");
for(int i = 0; i < this.alunos.length - 1; i++) {
builder.append(this.alunos[i]);
builder.append(", ");
}
builder.append(this.alunos[this.alunos.length - 1]);
builder.append("]");
return builder.toString();
}
}
When you print here, it returns all elements of the vectors:
public class Teste {
public static void main(String[] args) {
Aluno a1 = new Aluno();
Aluno a2 = new Aluno();
a1.setNome("Joao");
a2.setNome("Maria");
Vetor lista = new Vetor();
lista.Adiciona(a1);
lista.Adiciona(a2);
System.out.println(lista);
}
}
The result that returns is this:
[Joao, Maria, null, null, null, null]