vote up 2 vote down star

Hello,

I have often wondered if code really "shines" after it has been cleaned? Sometimes I find myself repeating some solution several times in the same piece of code. I think it over, simplify, and them rewrite it so it doesn't repeat. I guess you just have to think ahead of writing, not hurry and trust your logic. Sometimes it works, other times it becomes forgotten. Why is it so?

In an IBM article I read that dirty code can come from one of the several reasons.

  • Time pressure

  • Lack of training

  • Motivation

Having this in mind, what makes code clean? What best describes the quantity of it's cleanness? I have often heard that clean code can be read as a poem or a good book. What makes it so readable? Is it the quanitity - less functions, less loops, simpler logic and problem solution or the mere fact that it is just clean because it's simple in it's own unique way? What best fits the description of clean code?

Thank you!

flag

3  
Isn't this kind of like asking what makes a painting beautiful? – FogleBird Jun 29 at 1:36
2  
It's like asking what it is about a sunset that stirs your feelings. It's like asking what makes a fine wine so "fine". – S.Lott Jun 29 at 1:39
Yeah, so I went ahead and answered. :) – FogleBird Jun 29 at 1:40
It should be noted the elegant code doesn't always come from 'flow' as opposed to re-writing something several times before it just 'feels' write. The key here is being allowed to spend time to 'do it right' however 'right' is subjective, so it's easier if you have the same flow style as your boss / co-workers. – Nazadus Jun 29 at 1:59
Why isn't this a community wiki? – S.Lott Jun 29 at 10:15
show 1 more comment

closed as subjective and argumentative by Mark Biek, David, Matthew Scharley, Luca Matteis, John Saunders Jun 29 at 11:41

8 Answers

vote up 7 vote down check
  • Readable. Other programmers don't have a hard time figuring out what's going on.
  • Idiomatic. Standard approaches are used.
  • Terse. As simple as possible, no simpler.
  • Modular. Broken up into appropriately sized pieces, whether modules, classes or functions.
  • Bug-free. Obviously, it should work.
  • Elegant. Uses the best algorithmic approach possible.

Generally used to describe small pieces of code -- a single function or module.

link|flag
1  
I like that! I think 'Elegant' sums it up best, and of course it's generally easier to recognize bad code than good code. – Darren Oster Jun 29 at 1:44
vote up 3 vote down

Everyone will have different definitions of clean code, which is probably the reason why you are asking for some concrete answer. Unfortunately I can't give that to you as there is probably no 'end of all discussion' answer for this topic. There are several guide lines that should be followed but some people might digress with some of them.

In general I would say that these should be be at least the minimum for clean code: readability, simple and small components, well structured and bug-free. I'm sure other people with more experience can add to this.

link|flag
vote up 3 vote down

For me -- it's how little I have to store in my head.

A sanely named variable means I don't have to store extra information about it. Take, for example, a varaible named obj. In C# one might assume it's of type object however you may later find it's really some temporary holder for a List. You later find out that it's a list of points that plot where textBoxes should be placed. So now you have a couple bits of information that you must go out of your way to remember as opposed to naming it: testBoxLocationList or something like that.

Another example, in C#, would be the using statement. If you use a StreamWriter and wrap that in a using, you now do not have to store in memory where it gets disposed and/or where the stream gets closed.

Consistency is also key. Take, for example, forms Hungarian notation. a TextBox could be called 'txtBoxFoo', 'txtFoo', 'tFoo', 'textBFoo', etc. I've seen code where within the span of 2 hours the person used three of the above listed within a single class file. If you are consistent then others can "feel" your flow and then begin to make sense of your code easier.

The reason some say it is like a poem because poems are supposed to be fluid and easy to read and follow in to one another, usually.

link|flag
By "store in memory" do you mean "store in my head while trying to understand it?" – S.Lott Jun 29 at 10:17
Yes, and I modified the first line to be more specific. Sorry about that. – Nazadus Jun 29 at 14:00
vote up 2 vote down

Small classes, short methods, shallow conditionals, and meaningful names.

link|flag
I love code with meaningful class and variable names. Self-documenting code is beautiful :) – Oskar Jun 29 at 14:07
vote up 1 vote down

Clean code should be understandable to the people who are maintaining your code, free of dependencies on implicit state such as global variables, structured reasonably and commented where appropriate.

Similar to pornography, the definition of "clean code" is somewhat subjective, but I know it when I see it. :)

link|flag
+1: Software has meaning. Clean code expresses that meaning well. – S.Lott Jun 29 at 10:16
vote up 1 vote down

Adding to FogleBird very well described list:

  • Robust: clean code is robust to mistakes and descriptive enough in its report to allow easy understanding of what went wrong.
link|flag
vote up 1 vote down

Clean code solves the problem well; works reliably; is well structured, concise, clear and readable; is flexible to change -- and all the other good points mentioned in the earlier answers. In addition is should be pleasing to look at ("beautiful") and it should be worth studying, ie, teach us something about the art of programming.

Here are a couple of good books that answer this question with case studies and much more texture: Beautiful Code and Clean Code.

link|flag
vote up -2 vote down

Test-driven development

link|flag
2  
Well-tested code can still be "ugly" or even straight up wrong. – FogleBird Jun 29 at 1:42
Do you even know what test-driven development is? – Luca Matteis Jun 29 at 1:49
1  
Test-driven development goes beyond making sure the code is well-tested. True TDD will result in cleaner code because it forces modularity and incremental creation. But I don't think the question was "how do you create clean code" it was "how can you tell when you've got it". – JacobM Jun 29 at 1:51
4  
Probably better if you explain why TDD elicits "clean" code by its very nature, rather than question my knowledge. – FogleBird Jun 29 at 1:54
(Note that my comment was accompanied by an up-vote.) – JacobM Jun 29 at 1:55

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