Skip to content

Instantly share code, notes, and snippets.

@marciojrtorres
Created August 6, 2013 00:25
Show Gist options
  • Save marciojrtorres/6160919 to your computer and use it in GitHub Desktop.
Save marciojrtorres/6160919 to your computer and use it in GitHub Desktop.
Métodos são verbos
class Cavaleiro extends Personagem {
void ataca() { ... }
void anda() { ... }
// void guarda() { ... } // guarda o quê?
void guardaEspada() { ... } // melhor
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment