vote up 1 vote down star

Possible Duplicate:
What did you do to develop good code designing practices

There are two different situations.

  1. you read someone's code, and you know what they are doing intuitively.
  2. you read someone's code, even there are many comments, but you really don't know what he wants to do.

I wonder whether or not there are best practices that help people to write elegant code for other body to know?

flag

1  
Duplicate many times over. – George Stocker Sep 1 at 2:32
where is the link ? – MemoryLeak Sep 1 at 2:32
1  
In the reason for close. – George Stocker Sep 1 at 2:35
1  
Where can i see the reason for close ? – MemoryLeak Sep 1 at 2:41

closed as exact duplicate by George Stocker, cletus, gnovice, redsquare, Marc Gravell Sep 1 at 14:32

3 Answers

vote up 2 vote down check

Comments (other than XML documentation comments at the class/method level) are generally a code smell. Replace them with a method whose name reflects its intent.

See http://www.codinghorror.com/blog/archives/000589.html

There's a whole chapter in the book Clean Code on comments. Most of it's negative.

link|flag
vote up 1 vote down

Don't run a single line of code on too long. Neatly tab blocks of code. Provide sufficient commenting when necessary.

link|flag

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