vote up 2 vote down star
1

Robert C. Martin offers in the fist chapter of his book 'Clean Code' several definitions of 'clean code' from differen well known software experts. How do you define clean code?

flag

7 Answers

vote up 8 vote down check
  • Easy to understand.
  • Easy to modify.
  • Easy to test.
  • Works correctly (Kent Beck's suggestion - very right).

These are the things that are important to me.

link|flag
3  
It should also work correctly. Otherwise this seems like a fine definition to me. – Kent Beck Jun 5 at 7:29
Good point, I added it to the answer. – Ree Jun 5 at 7:45
vote up 6 vote down

Code I'm not afraid to modify.

link|flag
vote up 2 vote down

Code that doesn't require any comments to be easily understood.

link|flag
vote up 1 vote down

Code which reads as close to a human language as possible. I mean it on all the levels: from syntax used, naming convention and alignment all the way to algorithms used, quality of comments and complexity of distribution of code between modules.

Simplest example for naming convention:

if (filename.contains("blah"))

versus

if (S_OK == strFN.find(0, "blah"))

Part of it depends on the environment/APIs used, but most of it is of course the responsibility of the developer

link|flag
vote up 0 vote down

Code in which the different modules or classes have clearly defined contracts, is a good start.

link|flag
vote up 0 vote down

Code which doesn't break in multiple places when you make a single, seemingly insignificant change. It is also easy to follow the control path of the program.

link|flag
vote up 0 vote down

Point-free Haskell code. (Not really, though.)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.