Created
August 6, 2013 00:16
-
-
Save marciojrtorres/6160851 to your computer and use it in GitHub Desktop.
Padrões para nomes de interfaces
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
interface IPopulacao { // note o prefixo I, de interface | |
void contar(); | |
} |
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
interface Populacao { | |
void contar(); | |
} |
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
interface Populavel { // note o sufixo "vel" | |
void contar(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment