Clean Code - Sum up
- 1 minIntroduction
There are some significant notes from me while I am reading the book Clean Code of the author Robert C.Martin
Meaningfull Names
Use Intention-Revealing Names
Bad Code
int d; //elapsed time in days
Good Code
int elapsedTimeInDays;
int daysSinceCreation;
int daysSinceModification;
int fileAgeInDays;
Continous…