Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
Home » Community » PR, media coverage, articles and documentation » where are the comments in the sources!!!???
where are the comments in the sources!!!??? [message #197] Thu, 01 December 2005 19:24 Go to next message
fudadmin is currently offline  fudadmin
Messages: 1321
Registered: November 2005
Location: Kaunas, Lithuania
Ultimate Contributor
Administrator
Yes, I'm very angry.
where are the comments in the sources!!!???

Quote:

Software documentation exists in two forms, external and internal. External documentation is maintained outside of the source code, such as specifications, help files, and design documents. Internal documentation is composed of comments that developers write within the source code at development time.

One of the challenges of software documentation is ensuring that the comments are maintained and updated in parallel with the source code. Although properly commenting source code serves no purpose at run time, it is invaluable to a developer who must maintain a particularly intricate or cumbersome piece of software.

Following are recommended commenting techniques:

* When modifying code, always keep the commenting around it up to date.
* At the beginning of every routine, it is helpful to provide standard, boilerplate comments, indicating the routine's purpose, assumptions, and limitations. A boilerplate comment should be a brief introduction to understand why the routine exists and what it can do.
* Avoid adding comments at the end of a line of code; end-line comments make code more difficult to read. However, end-line comments are appropriate when annotating variable declarations. In this case, align all end-line comments at a common tab stop.
* Avoid using clutter comments, such as an entire line of asterisks. Instead, use white space to separate comments from code.
* Avoid surrounding a block comment with a typographical frame. It may look attractive, but it is difficult to maintain.
* Prior to deployment, remove all temporary or extraneous comments to avoid confusion during future maintenance work.
* If you need comments to explain a complex section of code, examine the code to determine if you should rewrite it. If at all possible, do not document bad code—rewrite it. Although performance should not typically be sacrificed to make the code simpler for human consumption, a balance must be maintained between performance and maintainability.
* Use complete sentences when writing comments. Comments should clarify the code, not add ambiguity.
* Comment as you code, because most likely there won't be time to do it later. Also, should you get a chance to revisit code you've written, that which is obvious today probably won't be obvious six weeks from now.
* Avoid the use of superfluous or inappropriate comments, such as humorous sidebar remarks.
* Use comments to explain the intent of the code. They should not serve as inline translations of the code.
* Comment anything that is not readily obvious in the code.
* To prevent recurring problems, always use comments on bug fixes and work-around code, especially in a team environment.
* Use comments on code that consists of loops and logic branches. These are key areas that will assist the reader when reading source code.
* Separate comments from comment delimiters with white space. Doing so will make comments stand out and easier to locate when viewed without color clues.
* Throughout the application, construct comments using a uniform style, with consistent punctuation and structure.

Notes Despite the availability of external documentation, source code listings should be able to stand on their own because hard-copy documentation can be misplaced.

External documentation should consist of specifications, design documents, change requests, bug history, and the coding standard that was used.
Re: where are the comments in the sources!!!??? [message #198 is a reply to message #197] Thu, 01 December 2005 19:38 Go to previous message
fudadmin is currently offline  fudadmin
Messages: 1321
Registered: November 2005
Location: Kaunas, Lithuania
Ultimate Contributor
Administrator
It's for myself...( also Laughing) . After 2 weeks web design I've forgotten what I'had done in U++...
Previous Topic: any plans to release other useful tools based on U++?
Next Topic: thanks for a great project
Goto Forum:
  


Current Time: Fri Mar 29 00:34:27 CET 2024

Total time taken to generate the page: 0.00962 seconds