Data Types, Variables, and Conversion
We learned in Chapter 5 that while we can use single- and multiple-line comments, they should not be a replacement for self-documenting code. Comments are added to help the reader of the code, but when the code is written expressively with proper namespace names, class names, variable names, etc., there is a limited need for comments. We should set an objective of zero need for comments.
In this chapter we will use code that is well documented for the purposes of helping us understand and read the code. It is not ...