Skip to content

Instantly share code, notes, and snippets.

@davidpn11
Created October 13, 2017 18:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidpn11/8480269dc7925054a8673effdad6d5af to your computer and use it in GitHub Desktop.
Save davidpn11/8480269dc7925054a8673effdad6d5af to your computer and use it in GitHub Desktop.
public class Pessoa {
private String nome;
private String cpf;
private int idade;
public Pessoa(String nome, String cpf, int idade) {
this.nome = nome;
this.cpf = cpf;
this.idade = idade;
}
public String getNome() {
return nome;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment