-
Notifications
You must be signed in to change notification settings - Fork 6
/
Main.java
39 lines (24 loc) · 1.05 KB
/
Main.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import java.util.ArrayList;
import java.util.List;
public class Main {
public static void main(String[] args) {
List<Telefone> telefones = new ArrayList<>();
Telefone telefone1 = new Telefone(TipoTelefone.CELULAR, "+55", "011", "956565656");
/* telefone1.tipo = TipoTelefone.CELULAR;
telefone1.ddi = "+55";
telefone1.ddd = "011";
telefone1.numero = "956565656";*/
Telefone telefone2 = new Telefone(TipoTelefone.COMERCIAL, "+55", "011","978454545" );
/* telefone2.tipo = TipoTelefone.COMERCIAL;
telefone2.ddi = "+55";
telefone2.ddd = "011";
telefone2.numero = "978454545";*/
telefones.add(telefone1);
telefones.add(telefone2);
Contato contato = new Contato("Alex", "Araujo", "Ada", telefones);
//System.out.println(contato.toString());
/*System.out.println(contato);
contato.telefones.forEach(tel -> System.out.println(tel.toString()));*/
contato.listarTelefonesFormatados().forEach(System.out::println);
}
}