Clean Code - Sum up

- 1 min

Introduction

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…

comments powered by Disqus
rss facebook twitter github youtube mail spotify lastfm instagram linkedin google google-plus pinterest medium vimeo stackoverflow reddit quora