Comments often make code smallsmell. Steve McConnell said it before me, but
- Comments on functions and code can almost all be eliminated by choosing names and types well.
- Comments on data are often helpful. Beginners can be told to comment every type definition and variable declaration. This is overkill but is a good rule of thumb and is way better than commenting code.
- Even better comments are just ones that describe the representation invariants of data and say what abstraction the data is intended to represent.
- If the representation invariant is not completely trivial, the best documentation is an internal function which validates that the data actually satisfy the representation invariant. Good example: ordered binary trees. Better: balanced, ordered binary trees. In this case you write the code to check the invariant and the comment just says that every value of the given type satisfies the invariant.
Summary: strive to move information from comments into code!
