< previous page page_32 next page >

Page 32
Case Sensitivity
New Term: C++ is case sensitive. In other words, uppercase and lowercase letters are considered to be different. A variable named age is different from Age, which is different from AGE.
Some compilers allow you to turn case sensitivity off. Don't be tempted to do this; your programs won't work with other compilers, and other C++ programmers will be very confused by your code.

Many programmers prefer to use all lowercase letters for their variable names. If the name requires two words (for example, my car), there are two popular conventions: my_car or myCar. The latter form is called camel-notation, because the capitalization looks something like a hump.
Keywords
Some words are reserved by C++, and you may not use them as variable names. These are keywords used by the compiler to control your program. Keywords include if, while, for, and main. Your compiler manual should provide a complete list, but generally, any reasonable name for a variable is almost certainly not a keyword.
DODON'T
DO define a variable by writing the type, then the variable name.DON'T use unsigned variables for negative numbers.
DO use meaningful variable names.DON'T use C++ keywords as variable names.
DO remember that C++ is case sensitive.
DO understand the number of bytes each variable type consumes in memory, and what values can be stored in variables of that type.

Creating More Than One Variable at a Time.
You can create more than one variable of the same type in one statement by writing the type and then the variable names, separated by commas. For example:
unsigned int myAge, myWeight;    // two unsigned int variables
long area, width, length;        // three longs

 
< previous page page_32 next page >

If you like this book, buy it!