Last active
December 20, 2015 16:19
-
-
Save marciojrtorres/6160633 to your computer and use it in GitHub Desktop.
Nomes expressivos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// variável comentada: má opção | |
int d; // tempo decorrido em dias | |
// variável com nome pronunciável | |
int tempoDecorrido; | |
// adicionando informações extras à variável | |
int tempoDecorridoEmDias; | |
// dando significado com propósito | |
int diasDesdeUltimaAlteracao; | |
// em vez de: | |
int tempoDecorridoEmDias; // decorridos desde quando? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment