vote up 14 vote down star
5

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 analyse the statement (also for me when I'm checking old code)

What do you do? What about other scenarios? Pros? Cons?

flag

42 Answers

prev 1 2
vote up 20 vote down

I have learned the hard way to code for the lowest common denominator. That encompasses a lot of behaviors.

  1. comment blocks of code, not necessarily every line. Explain why the following block (or stanza) of code is written the way it is. Include a date and your initials in the comment, so you know when the comment was put in and who wrote the comment. Try to avoid commentary like "this is stupid" or "I am so darn brilliant" as it really doesn't help, and may be proven wrong in the future. If you use any fancy tricks or do anything that isn't obvious from a quick glance, explain what and why.

  2. use human-readable variable names. that means avoid single-letter variables like the plague. it's much easier to guess what a loop does if the index variable is called rowIndex than i. Almost every civilized language has a compiler or interpreter that will scrub out variable names before putting your work into machine code, so using cryptic variable names does no one any favors.

  3. remember that compilers are smart. Very smart. Every modern compiler knows how to optimize loops and other basic things. Writing a complete while-loop on one line may look fancy to you, but it compiles the same and will trip up other people looking at your code (and even yourself if you come back to the code in a few weeks). Avoid fancy language tricks if they make the code less readable.

  4. adopt a style and stick with it. Always do ifs, loops, etc in the same format (and same indentation). You will be able to spot various features of your code more easily because the same features will look the same. If you make a mistake, it will stand out a little more.

Doing these things make the code more readable for everyone. Adopting good coding habits reduces dependence on comments, too, so it's a double-win.

link|flag
show 1 more comment
vote up 1 vote down

I believe at the beginning of routines/methods/modules that you document the reason/intent of the entire piece of code. It's good to include comments on changes (who, when, why/what). In the code itself things that may not be clear or assumptions that are made should be commented.

Don't do comparisons with hard coded numbers use constants with meaningful names.

I have had to maintain code that was refactored down to one and two line methods with seemingly meaningful names, but the reality was there should have been comments to give the bigger picture of what was going on and how the methods related to other things that were going on.

link|flag
vote up 2 vote down

I realize it's kind of cliche, but the code should document itself. I tend to err on the side of declaring more variables for the sake of clarity (on the assumption that the compiler can/will optimize the unnecessary ones away). Keep the functions short and variables and functions well named. I try to do that and then only comment the tricky stuff.

Be aware, though, that shorter functions make it harder to see how the code, as a whole, works together. Keep this in mind when documenting functions (as opposed to individual lines of code). At the function or even unit level, you should be documenting how the functions interact with each other.

link|flag
vote up 16 vote down

I usually comment "ifs" and write in "human language" what it means, like "checks if it's A or B".

If you find yourself doing this, it may be better to refactor so that the complex boolean logic is extracted to another method, or at least introduce a variable with a name that makes it clear what the logic means.

The problem with comments is that they (sometimes) violate the DRY (Don't Repeat Yourself) guideline. When you duplicate the logic by adding it to documentation, even comments right next to the code, you run the risk of having things fall out of date. Soon the comments may become incomplete or inaccurate.

That said, I don't mind looking at comments, even if they are a little out of date. I have run into code that looks like:

// collect data
Data data = collectData();
// analyze data
Report report = analyze(data);
// print report
report.print();

Those types of comments are absolutely worthless to everybody and I will usually delete them on sight.

link|flag
vote up 1 vote down

I try to comment only on things that are necessary. Like what is the purpose of this class, what does this method do (if not obvious), which values can the parameters be etc. I try to avoid comments that describe what the code does. Instead, I try to make the code self-descriptive. Extract smaller methods from big chunks of code etc. Of course, this is not always possible and may sometimes even make it worse. You have to find the balance where your combination of code and comments is the most readable. The worst thing you can do is add comments to obvious methods like getters and setters when they don't do more than what they should - get or set the named field. One thing that is really dangerous about comments is that they may get outdated when the implementation changes and the comments are forgotten. So you should try to focus on the interesting stuff, because that's what users of your code or yourself will see and have to trust, if they don't have the source code ;)

link|flag
vote up 3 vote down

The problem with comments interspersed with code is that when the code changes (the code will change) the comments very often do not, or at least not consistently. This leads to even more confusing, unmaintainable code, because after several changes the comments and code don't say nearly the same thing.

Instead, I prefer to have comments for each module (class, function, whatever). This comment section should explain in plain English what function the module is intended for.

If I think a section of code is tricky enough to warrant a comment, then I refactor it out into its own function so the function name and related comments can explain what it is supposed to do.

link|flag
vote up 0 vote down

I document what the function does, its parameters and what it returns and why. Inside the functions, I rarely comment anything. I find that if the variable names are chosen well, then they're all the commenting that are truly needed.

I write mainly C# code nowadays, but I find this system works for pretty much any object-oriented language because functions in well-factored OO generally don't go longer than fifty lines. If they do, I might sprinkle some comments in to document subsections of the process, but at that point I generally just break the single function into subfunctions.

link|flag
vote up 35 vote down

Comments should not be "how" something is done, but rather "why" it's done (except in the VERY rare condition where the how is not obvious from reading the code, and I mean that is SUPER RARE).

link|flag
show 1 more comment
vote up 3 vote down

I don't comment the obvious stiff (i.e. "Set i to 2" or "check if a is greater than 5"), but sometimes just a little information about what the code is used for, i.e. "build the outer table" or some oddities like "MyClass.Count is actually Count-1". And of course, Workaround for bugs, i.e. "Workaround for KB123456 - url to some site that explains the bug...."

So basically: I almost never comment the "What" but sometimes the "Why".

link|flag
vote up 1 vote down

I comment as a service to others, and only when the code is "done". When working on my own projects I rarely bother since I'd rather be adding features and fixing bugs than writing something I'll probably never read.

Interestingly, when reading other people's code, I very often delete or ignore the comments and look directly at the code. I find that is many cases it can be clearer to read than the corresponding comments.

link|flag
vote up 0 vote down

I try to remove move the comments to separate functions when it seems the function is getting big.

To look big sooner I use a big font size like 14 or 15.

link|flag
vote up 5 vote down

Aside from descriptions of methods and properties and such, I generally don't comment my code, unless there is a bit that is particularly hard to understand. My personal goal is to write code that I can come back to in a year and make sense of in about 5 minutes, and I usually achieve that. The best code is easy enough to understand that it doesn't need reams of comments.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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