vote up 0 vote down star
1

Possible Duplicate:
How do you like your comments? ( Best Practices )

What are best practices to follow while commenting code ?

flag
This should be a community-wiki – joshcomley Oct 18 at 16:40

closed as exact duplicate by Jeff Atwood Oct 18 at 19:45

11 Answers

vote up 0 vote down

When writing a comment, always consider whether it would be better to take the code you are commenting and refactor it out to a suitably named method.

link|flag
vote up 0 vote down

Have a look at Code Complete. Its simply best for such topics.

link|flag
On the given website,you can directly search the content in the book.But you need to register (free) to read the content. – Ravi Oct 18 at 19:01
vote up 0 vote down

Code comments:
Code should explain what you do, Comments should explain why you do it.
One exception to that rule is - as mentioned above - when you sacrifice clarity for performance.

Entity documentation

Each Entity - property, method, class, library - comes threefold:

  • the actual implementation
    (e.g. a private int member with public getters and setters)
  • the physical interface that is checked by the compiler
    (e.g. this property only accepts integer values)
  • the contract
    (e.g. this property only accepts even values)

Document the contract: guarantees you make - e.g. about return values or class invariants. Document what you expect from callers of the object, and what constraints to follow when changing the implementation or e.g. inheriting from this class.

Document implementation specifics as such only if the side effects may be surprising (e.g. "this implementation still uses bubble sort because rob was to lazy. fix when it gets to slow").

I still consider comments a good place for this documentation, because it's close to the source, and needs to be maintained together with it.

link|flag
vote up -1 vote down

Short answer: Don't do it.

Long answer: There are three cases where you should be commenting code:

  1. You had to sacrifice code clarity for optimization. This shouldn't happen unless a) you've tested and the profiler tells you the code in question is causing your speed bottleneck, or b) you absolutely know it's going to be a performance problem.
  2. You absolutely could not make your code clear because what you are doing is actually so complex that the code can't be made clear. This probably will very rarely ever happen unless you're doing research stuff. General business logic doesn't often get this complicated.
  3. You don't have time to refactor to make the code clear on its own. This is the most common cause of comments. Every free minute at work should be spent removing the need for these comments.
link|flag
vote up 0 vote down

I don't think you can ever comment enough. I think too much emphasis is put on doing it only when necessary. A better approach would be "comment as much as you think it will help someone who is maintaining your code". Pretend that the person reading the comments has never seen your code before and needs your help figuring out what you've done.

link|flag
Comments should only explain why, not what. The coder should never need a comment to figure out "what you've done". If he does, your code is obfuscated. Fix the code. – jmucchiello Oct 18 at 19:07
vote up 0 vote down

Double check your comment and ask yourself if it is the code that should be rewritten instead.

link|flag
vote up 5 vote down

Simple "Code Comments" search in SO yields:

Any reason to open yet another question on this topic?

link|flag
vote up 0 vote down

Don't comment what people can easily understand by just reading the code -- don't comment anything obvious, so.

If there is something you had to think to code... Then, it'll probably not be easy to understand ; ie, commeting might be useful.
And, then, what you need to comment is probably not the code itself, but the idea behind it, ie either the algorithm, or the business rule that's implemented.

Don't make code hard to understand ; for instance, a function called "my_func(a, b)" is not good and will require comments... And people will always have to read those comments... not good.
The same function, called add_numbers(a, b) will be far more useful... And will not require comments.

link|flag
vote up 1 vote down

I often write the comments before I write any code e.g. if I'm designing a class or function I would sketch out the functionality with pseudo-code before writing the real code.

link|flag
vote up 5 vote down

Comment the algorithm not the code.

Make the code self-commenting by choosing sensible variable and method names, and by refactoring the code into short methods that can be fully described by their names.

See the first couple of chapters of Clean Code by Robert C. Martin for a more indepth discussion of this.

link|flag
Your first sentence goes to the heart of the matter. – Peter Rowell Oct 18 at 18:44
vote up 3 vote down
  1. Don't comment obvious things
  2. Don't create meaningless identifiers and then use comments to explain them. Use self-explanatory names.
  3. Comment your not obvious decisions that cannot be naturally guessed
  4. Don't use language other than English
link|flag
I agree with English only, but that is b/c English is my first (and only) language. – J.Hendrix Oct 18 at 16:45
I normally write all my code in English even though it isn't my primary language, but right now I'm working on a very complex domain specific project and I have no idea how to translate the names and concepts to English. It isn't too bad to mix English and my own language in comments and identifiers and I'm even required to do that since noone around here knows the English translations of the concepts (if they even exist). – Martin Liversage Oct 18 at 20:12

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