Possible Duplicate:
How do you like your comments? ( Best Practices )
What are best practices to follow while commenting code ?
|
1
|
What are best practices to follow while commenting code ? |
|||
|
closed as exact duplicate by Jeff Atwood♦ Oct 18 at 19:45 |
|
|
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. |
|||
|
|
|
|
Have a look at Code Complete. Its simply best for such topics. |
|||
|
|
|
Code comments: Entity documentation Each Entity - property, method, class, library - comes threefold:
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. |
|||
|
|
|
|
Short answer: Don't do it. Long answer: There are three cases where you should be commenting code:
|
|||
|
|
|
|
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. |
|||
|
|
|
Double check your comment and ask yourself if it is the code that should be rewritten instead. |
|||
|
|
|
|
Simple "Code Comments" search in SO yields:
Any reason to open yet another question on this topic? |
|||
|
|
|
|
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.
Don't make code hard to understand ; for instance, a function called " |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
||||
|