How do I sort information stored in an ArrayList in java? Follow the code for review.
public class Main {
public static void main(String[] args) {
Aluno aluno = new Aluno();
ArrayList<Aluno> array_aluno = new ArrayList<Aluno>();
for (int cont = 1; cont <= 3; cont++){
aluno.setNome(JOptionPane.showInputDialog("Insira o nome do aluno: ") );
aluno.setTelefone(JOptionPane.showInputDialog("Insira o telefone do aluno: ") );
array_aluno.add(aluno);
}
for (int cont = 0; cont <= array_aluno.size() ; cont++){
System.out.println(array_aluno.get(cont) );
}
}
}