fork(2) download
  1. import java.util.ArrayList;
  2.  
  3. class Ideone {
  4. public static void main (String[] args) {
  5. ArrayList<Pessoa> pessoas = new ArrayList<>();
  6. pessoas.add(new Pessoa(1, "joão", 'M', "9999-9999"));
  7. pessoas.add(new Pessoa(2, "maria", 'F', "9999-9991"));
  8. for (Pessoa pessoa : pessoas) {
  9. System.out.println(pessoa.getNome());
  10. }
  11. }
  12. }
  13.  
  14. class Pessoa {
  15.  
  16. private int id;
  17. private String nome;
  18. private char sexo;
  19. private String telefone;
  20.  
  21. Pessoa(int id, String nome, char sexo, String telefone){
  22. this.id = id;
  23. this.nome = nome;
  24. this.sexo = sexo;
  25. this.telefone = telefone;
  26. }
  27.  
  28. public int getId(){ return this.id; }
  29. public void setId(int id){ this.id = id; }
  30.  
  31. public String getNome(){ return this.nome; }
  32. public void setNome(String nome){ this.nome = nome; }
  33.  
  34. public char getSexo(){ return this.sexo; }
  35. public void setSexo(char sexo){ this.sexo = sexo; }
  36.  
  37. public String getTelefone(){ return this.telefone; }
  38. public void setTelefone(String telefone){ this.telefone = telefone;}
  39.  
  40. }
Success #stdin #stdout 0.1s 320512KB
stdin
Standard input is empty
stdout
joão
maria