Tagged Questions
The comments tag has no wiki summary.
131
votes
49answers
7k views
What is self-documenting code and can it replace well documented 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 ...
59
votes
65answers
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 ...
52
votes
10answers
21k 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 ...
45
votes
58answers
5k views
When NOT to comment code [closed]
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 ...
38
votes
6answers
1k views
Is there any benefit in using PHP comments over HTML comments in HTML code?
I heard someone say that there is so I was wondering.
HTML comment:
<!-- Comment goes here. -->
PHP comment:
<?php // Comment goes here. ?>
33
votes
14answers
5k views
Simple Getter/Setter comments
What convention do you use to comment getters and setters? This is something I've wondered for quite some time, for instance:
/**
* (1a) what do you put here?
* @param salary (1b) what do you put ...
33
votes
28answers
2k 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 ...
31
votes
39answers
2k 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 ...
26
votes
9answers
1k views
Do comments slow down an interpreted language?
I am asking this because I use Python, but it could apply to other interpreted languages as well (ruby, php, javascript).
Whenever I leave a comment in my code, is it slowing down the interpreter? My ...
23
votes
19answers
677 views
When should I add comments to my code?
When I'm writing it?
After I got a part done (Single class/function/if-elses)?
After I got the whole thing working?
23
votes
43answers
3k 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 ...
22
votes
10answers
948 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 ...
21
votes
3answers
7k views
Block commenting in Ruby
Does Ruby have block comments?
If not, is there an efficient way of inserting # in front of a block of highlighted code in TextMate?
21
votes
101answers
8k views
What's the least useful comment you've ever seen? [closed]
We all know that commenting our code is an important part of coding style for making our code understandable to the next person who comes along, or even ourselves in 6 months or so.
However, ...
18
votes
11answers
425 views
Where to document functions in C?
I have a C program with multiple files, so I have, for example, stuff.c which implements a few functions, and stuff.h with the function prototypes.
How should I go about documenting the functions in ...
18
votes
18answers
787 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 ...
18
votes
5answers
798 views
How to quote “*/” in JavaDocs
I have a need to include */ in my JavaDoc comment. The problem is that this is also the same sequence for closing a comment. What the proper way to quote/escape this?
Example:
/**
* Returns true if ...
18
votes
10answers
1k 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:
http://redbitbluebit.com/subversion-check-in-comment-great-practices/
As the guy ...
17
votes
2answers
861 views
Vim different textwidth for multiline C comments?
In our C++ code base we keep 99 column lines but 79-some-odd column multiline comments. Is there a good strategy to do this automagically? I assume the modes are already known because of smart comment ...
17
votes
20answers
817 views
Commenting practices?
As a student in computer engineering I have been pressured to type up very detailed comments for everything I do. I can see this being very useful for group projects or in the work place but when you ...
17
votes
21answers
1k 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 ...
17
votes
11answers
8k views
Python snippet to remove C and C++ comments
I'm looking for Python code that removes C and C++ comments from a string. (Assume the string contains an entire C source file.)
I realize that I could .match() substrings with a Regex, but that ...
16
votes
6answers
573 views
Why do /**/ comments work in stylesheets but // comments don't?
Is there a good reason for this? Lame question, but I just wondered if there was a reason why.
16
votes
7answers
2k views
Comment the interface, implementation or both?
I imagine that we all (when we can be bothered!) comment our interfaces. e.g.
/// <summary>
/// Foo Interface
/// </summary>
public interface Foo
{
/// <summary>
/// Will ...
15
votes
3answers
8k views
Python: What is the common header format?
I came across the following header format for Python source files in a document about Python coding guidelines:
#!/usr/bin/env python
"""Foobar.py: Description of what foobar does."""
__author__ ...
15
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 ...
15
votes
6answers
5k views
Where to put the doxygen comment blocks for an internal library - in H or in CPP files?
The common sense tells that the Doxygen comment blocks have to be put in the header files where the classes, structs, enums, functions, declarations are. I agree that this is a sound argument for a ...
15
votes
10answers
2k views
How do you like your comments? [closed]
What are your best practices for comments? When should they be used, and what they should contain? Or are comments even needed?
14
votes
9answers
365 views
When are comments “too much”, and when are they not enough?
There is an on-going minor debate where I work about the efficacy of comments within code. One of the leads instructed his developers not to use comments as they are too "old fashioned", and a couple ...
14
votes
7answers
2k views
Why is '//' style multiline comment bad (in Java)?
http://java.sun.com/docs/codeconv/html/CodeConventions.doc4.html#286
I was reading the above section of Java coding convention and started to wonder why it says "// comment.....shouldn't be used on ...
14
votes
3answers
9k views
Commenting code in Notepad++
I'm using Notepad++ as an editor to write programs in Python. It might sound daft but I looked around in the editor and could not find any means (not the manual way but something like in Emacs) to do ...
14
votes
20answers
838 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 ...
14
votes
7answers
9k views
Best way to automatically remove comments from PHP code
Whats the best way to remove comments from a PHP file?
I want to do something similar to strip-whitespace() - but it shouldn't remove the line breaks as well.
EG:
I want this:
<?PHP
// ...
14
votes
5answers
5k views
Latex=>PDF Rights management
Im currently writing my bachelor thesis with latex and using TexnicCenter. I want to be able to send my generated pdf file to people and they should be able to write comments.
It seems like commenting ...
13
votes
5answers
2k views
Can HTML comments appear before the DOCTYPE declaration?
I would like to place a comment (<!-- this --> style) at the very top of my HTML, preceding the DOCTYPE declaration. Does the standard allow this? Is it supported by the major browsers? Are ...
12
votes
7answers
781 views
What is the difference between ; and ;; in Clojure code comments?
What is the difference between ; and ;; when starting a comment in Clojure? I see that my text editor colours them differently, so I'm assuming there is notionally some difference.
I also see that ...
12
votes
11answers
398 views
Good Use Cases of Comments
I've always hated comments that fill half the screen with asterisks just to tell you that the function returns a string, I never read those comments.
However, I do read comments that describe why ...
12
votes
2answers
1k views
VS2005 VB.NET XML Comments ''' - stopped working
I'm using VS2005 in a solution with a mix of VB and C# in different projects.
I use this solution on several different computers and XML comments with both /// (c#) and ''' (VB) have been fine for ...
11
votes
2answers
142 views
What do /+ and +/ indicate in D?
In some of the Derelict source code, I see some blocks that are surrounded by /+ and +/, like so:
/+ other
alias FTC_MruNodeRec* FTC_MruNode;
alias FTC_MruListRec* FTC_MruList;
alias ...
11
votes
4answers
262 views
Proper commenting for functional programming
I've been learning scheme, and I just realized that I don't really know how to properly comment my functional scheme code. I know how to add a comment of course - you add a ; and put your comment ...
11
votes
7answers
163 views
Alternatives to commented out code for historical purposes
Does anyone have a valid alternative for using commented out code checked into the repository for findability reasons?
The reason I ask is because I had a discussion with a fellow developer recently ...
11
votes
5answers
2k views
Remove comments from C/C++ code
Is there an easy way to remove comments from a C/C++ source file without doing any preprocessing. (ie, I think you can use gcc -E but this will expand macros.) I just want the source code with ...
11
votes
2answers
7k views
How to comment a block in Eclipse?
Does Eclipse have a hot key to comment a block? and to uncomment a block?
11
votes
11answers
279 views
Are comments to show what version code was added/modified for useful?
Some of the developers on the project I work on have a habit of commenting their code to show which version of the product it was added for, e.g.
// added for superEnterpriseyWonder v2.5
string ...
11
votes
26answers
1k 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 ...
11
votes
21answers
615 views
Do you use special comments on bug fixes in your code?
Some of my colleagues use special comments on their bug fixes, for example:
// 2008-09-23 John Doe - bug 12345
// <short description>
Does this make sense?
Do you comment bug fixes in a ...
10
votes
3answers
250 views
How to keep the header comments up to date in Xcode
Xcode has a habit of putting all kinds of (redundant) information at the top of each code file it creates, containing copyright notices, class names, project names and client names. Like it or not, ...
10
votes
2answers
264 views
Is there an eclipse plugin such that task tags can be parameterized?
I have some TODO tags in my Java code and would like to parameterize them, mainly with
priorities
types
deadlines.
Since I do not want to create new task tags for each combination of these ...
10
votes
5answers
381 views
Javascript Comments are security risk?
During a recient PCI audit the auditor said that we had major security risks because
It was possible to download static resources from our website such as images css and javascript without prior ...
10
votes
6answers
3k views
Best practice for C++ function commenting
Is there an accepted best practice for commenting functions? I only know of the doxygen style but it is not officially supported by C++ like Javadocs is for Java so just wondering what is best.