75
votes
49answers
4k views
Self-documenting code
I have a colleague who insists that his code doesn't need comments, it's "self documenting."
I've reviewed his code, and while it's clearer than code which I've seen others produce, I still disagree …
34
votes
53answers
2k views
Do you leave historical code commented out in classes that you update?
When you need to obsolete a section of code (say either the business rules changed, or the old system has been reworked to use a new framework or something) do you delete it from the file or do you …
33
votes
59answers
3k views
When NOT to comment code
What are your "favourite" overuses / misconceptions about commenting the code? Why do you sometimes think commenting is a pain? What arguments would you use to convince others that less is more at …
29
votes
29answers
1k views
Commenting code that is removed?
Is it a good practice to comment code that is removed? For example:
// Code to do {task} was removed by Ajahn on 10/10/08 because {reason}.
Someone in my developer group during a peer review made …
26
votes
37answers
1k views
How to convince people to comment their code
What are good arguments to convince others to comment their code?
I notice many programmers favor the perceived speed of writing code without comments over leaving some documentation for themselves …
18
votes
11answers
643 views
Are comment headers and footers in your code really necessary?
Many corporate coding standards require a large comment header and footer in each and every file. Something like:
// MyFile.cpp
//
// Copyright (c) 200x Company ABC
//
// This file is a …
15
votes
18answers
672 views
does an incorrect comment smell?
I just had a situation where I was reading some code while working on a bug and I noticed an incorrect comment (the code did not do what the comment said it did). I just thought "hmm, ok" and went on …
15
votes
20answers
717 views
How do you flag code so that you can come back later and work on it?
In C# I use the #warning and #error directives.
#warning This is dirty code...
#error Fix this before everything explodes!
This way the compiler will let me know that I still have work to do. What …
14
votes
10answers
503 views
Best practices for version control comments
There is a lot of conversation about commenting code, but how about commenting on check-ins?
I found this blog post:
…
14
votes
9answers
3k views
Generating Documentation from C# XML Comments
I've recently started a new project and I'm using C# for the first time. I've found that while Visual Studio is helpful in creating C#'s XML comments to document your classes and methods, there's not …
14
votes
42answers
2k views
Do you comment your code?
I usually comment "ifs" and write in "human language" what it means, like "checks if it's A or B".
I find it's better for junior programmers that read the code to read what it means first and then …
13
votes
20answers
689 views
When To Comment Code (The Other “When”)
Yesterday I was going through some code of mine which made no sense to me at first (written less than a month ago). When I understood it, I quickly added comments to avoid the exercise. This made me …
13
votes
0answers
680 views
How does comment voting work? [closed]
Since the release of comment upvotes and flagging. Just wondering if you get rep for upvoted comments?
Also wondering if upvoted comments have any effect on the comment sorting? And can you see your …
12
votes
32answers
1k views
Are comments necessary for a programming language?
After some stupid musings about Klingon languages, that came from this post I began a silly hobby project creating a Klingon programming language that compiles to Lua byte-code. During the initial …
11
votes
24answers
668 views
What is your personal approach/take on commenting?
Duplicate
What are your hard rules about commenting?
A Developer I work with had some things to say about commenting that were interesting to me (see below). What is your personal approach/take …
