Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This post (When not to comment code) has a great discussion about commenting styles.

I agree with the sentiment to commenting the intent of the code ("why") rather than the "what".

It occurred to me that perhaps we should be placing the comments after the code, like this:

        _checkForUpdatesThread = new Thread(new ThreadStart(updateManager.CheckForUpdates));
        _checkForUpdatesThread.Start();
        // since CheckForUpdates() can take up to a minute to execute

Rather than:

        // Start CheckForUpdates() on its own thread, since it can take up to a minute to execute
        _checkForUpdatesThread = new Thread(new ThreadStart(updateManager.CheckForUpdates));
        _checkForUpdatesThread.Start();

This allows the reader to skim through the code, concentrating on the actual code first - which is hopefully so beautiful that no-one needs to look down at the comments. If the reader finds themselves asking "Why the hell?!?" they can look down to the comments to see what the original author was thinking.

To help enforce the comment providing intent ("why"), it may be useful to always start the comment with "because", "since", "as", "instead of" or similar.

Has anyone seen this done in practice? Any thoughts on whether it's a good idea?

share|improve this question
I kind of like the idea. I have not done it in practice though. – user16324 Nov 20 '09 at 0:15
I'll have to try this next this next time I'm programming. – Jeffrey Aylesworth Nov 20 '09 at 0:18
1  
Good discussion, having trudged through a poorly written uncommented piece of crap... I now appreciate comments SOOO Much more. I think comp sci programs should have a 1 semester course dedicated to commenting. – Zoidberg Nov 20 '09 at 0:22

9 Answers

up vote 20 down vote accepted

Definitely should be above IMHO.

I look at it this way, if you have to include comments and your code is not self-explanatory, then I would rather not be confused by a block of code, then see "ahh, that's what it was supposed to do".

I'd rather know up front...

share|improve this answer
2  
+1 Comments after the code are worthless. Either the code is understandable, which means the comment is wasted typing, or the code is confusing in which case you should have given me an explanation of what I was about to read rather than do a "teehee" after the fact. – 280Z28 Nov 20 '09 at 8:39
Accepting this answer as it had the most up-votes. – dbruning Jul 15 '11 at 5:01

I find comments before better, because if I can't explain the code before I write it, then I am not writing it properly.

share|improve this answer
Although you sometimes go "oh, if someone else read that code, they probably wouldn't understand it - I better go back and add a bit of text" instead :) – phidah Nov 20 '09 at 4:49
Absolutely, refining comments happens as often as refining code, or at least it should. – Zoidberg Nov 20 '09 at 11:16

This is pretty much a subjective discussion, though I think comments should be above code. For the last few years I have only seen comments before code. Javadoc and doxygen api comments always precede code. For very short reasoning, sideways comments are also fairly readable.

share|improve this answer

At least in your example, it certainly requires fewer words to say what you mean. However, for a comment that applies to a block of code, it makes more sense at the top, where it's more likely to be noticed. There is this OCD part of me, though, that wants to do it the the same way every time, so switching it up rankles me a bit.

share|improve this answer

Comments above is best.

Stepping aside from code for a moment: When you read a magazine article, it will be broken into sections, each with a heading at the top that summarises the content of the section. This (a) gives you a high-level overview of the article that you can skim-read before you read any of the detailed text, and (b) while reading the article, it informs you that you are moving on to a new topic, and describes what that topic will be.

Code can (and should) be "self documenting", but you shouldn't have to read and understand every line of code to understand how a method works - a summary is usually sufficient. A lot of coding time is spent searching for the chunk of code that we wish to edit. By using a summary comment on each block, I can quickly zero in on the block that is relevant to my task.

In addition, most computer-readable documentation systems (Doc XML, Doxygen, Java doc etc) expect the comment to come before the code it relates to - it's better to remain compatible with that standard.

share|improve this answer

I prefer the comments being above, almost like some kind of heading, explaining the reasoning behind the code to come. But it's all about opinion really, there's no "right way".

share|improve this answer

It's an interesting idea, not sure if I like it though. The "standard" way goes, you say what is going to happen, you show how it happens and so forth. The other way around, when you read the comment the context is gone, the thing already happened. However, I would go for an after the fact comment that explains what should have happened at that point.

share|improve this answer

I'm still in favor of commenting before and sometimes before and after the code block. These two samples one gonna look 'naggy':P

Critical/Important comments enclosing the block.

Sample 1:

// Important: Start CheckForUpdates() on its own thread, since it can take up to a minute to execute
_checkForUpdatesThread = new Thread(new ThreadStart(updateManager.CheckForUpdates));
_checkForUpdatesThread.Start();
// End CheckForUpdates()

Sample 2:

// Important: Please see notes after CheckForUpdates() start
_checkForUpdatesThread = new Thread(new ThreadStart(updateManager.CheckForUpdates));
_checkForUpdatesThread.Start();
// Note: CheckForUpdates() started on its own thread, since it can take up to a minute to execute
share|improve this answer

If you have to explain what you're doing, why would you explain it after you do it?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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