Mudanças entre as edições de "Clean Code"
De Basef
Linha 11: | Linha 11: | ||
== Functions == | == Functions == | ||
* [[Functions Should Be Small]] | * [[Functions Should Be Small]] | ||
+ | * [[Functions Should Do One Thing]] | ||
[[Category:Clean Code]] | [[Category:Clean Code]] |
Edição das 11h36min de 27 de janeiro de 2020
Meaningful Names
- Use Intent Revealing Names
- Use Pronounceable Names
- Use Searchable Names
- Avoid encodings: Hungarian Notation
- Don't Use Member Prefixes
- Interfaces and Implementations
- Class Names
- Method Names