Skip to content

Instantly share code, notes, and snippets.

@vyper
Created March 26, 2012 17:06
Show Gist options
  • Save vyper/2206531 to your computer and use it in GitHub Desktop.
Save vyper/2206531 to your computer and use it in GitHub Desktop.
public class Aluno { // aqui é a definição de classe
private String nome; // aqui é um atributo 'nome' do tipo 'String', ou seja, poderemos guardar tudo que é texto nela, inclusive números e caracteres especiais.
public String getNome() { // é o método pra pegar o nome, pois vamos ver que não é 'bonito' acessar direto os atributos
return nome;
}
public void setNome(String nome) { // método pra guardar o nome
this.nome = nome;
}
public String toString() {
return this.nome; // é o que aparecerá quando mandarmos 'mostrar' o objeto
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment