package br.com.bytebank.banco.teste;
public class TestArrayReferencias {
public static void main(String[] args) {
//int[] idades = new int[5];
Contacorrente[] contas = new Contacorrente[5];
Contacorrente cc1 = new Contacorrente(22,11);
contas[0] = cc1;
Contacorrente cc2 = new Contacorrente(22, 22);
contas[1] = cc2;
System.out.println(contas[1].getNumero());
}
}