2.2. Literal ConstantsA value, such as 42, in a program is known as a literal constant: literal because we can speak of it only in terms of its value; constant because its value cannot be changed. Every literal has an associated type. For example, 0 is an int and 3.14159 is a double. Literals exist only for the built-in types. There are no literals of class types. Hence, there are no literals of any of the library types.
Rules for Integer LiteralsWe can write a literal integer constant using one of three notations: decimal, octal, or hexadecimal. These notations, of course, do not change the bit representation of the value, which is always binary. For example, we can write the value 20 in any of the following three ways: 20 // decimal 024 // octal 0x14 // hexadecimal Literal integer constants that begin with a leading 0 (zero) are interpreted as octal; those that begin with either 0x or 0X are interpreted as hexadecimal. By default, the type of a literal integer constant is either int or long. The precise type depends on the value of the literalvalues that fit in an int are type int and larger values are type long. By adding a suffix, we can force the type of a literal integer constant to be type long or unsigned or unsigned long. We specify that a constant is a long by immediately following the value with either L or l (the letter "ell" in either uppercase or lowercase).
In a similar manner, we can specify unsigned by following the literal with either U or u. We can obtain an unsigned long literal constant by following the value by both L and U. The suffix must appear with no intervening space: 128u /* unsigned */ 1024UL /* unsigned long */ 1L /* long */ 8Lu /* unsigned long */ There are no literals of type short. Rules for Floating-Point LiteralsWe can use either common decimal notation or scientific notation to write floating-point literal constants. Using scientific notation, the exponent is indicated either by E or e. By default, floating-point literals are type double. We indicate single precision by following the value with either F or f. Similarly, we specify extended precision by following the value with either L or l (again, use of the lowercase l is discouraged). Each pair of literals below denote the same underlying value: 3.14159F .001f 12.345L 0. 3.14159E0f 1E-3F 1.2345E1L 0e0 Boolean and Character LiteralsThe words true and false are literals of type bool: bool test = false; Printable character literals are written by enclosing the character within single quotation marks: 'a' '2' ',' ' ' // blank Such literals are of type char. We can obtain a wide-character literal of type wchar_t by immediately preceding the character literal with an L, as in L'a' Escape Sequences for Nonprintable CharactersSome characters are nonprintable. A nonprintable character is a character for which there is no visible image, such as backspace or a control character. Other characters have special meaning in the language, such as the single and double quotation marks, and the backslash. Nonprintable characters and special characters are written using an escape sequence. An escape sequence begins with a backslash. The language defines the following escape sequences:
We can write any character as a generalized escape sequence of the form \ooo where ooo represents a sequence of as many as three octal digits. The value of the octal digits represents the numerical value of the character. The following examples are representations of literal constants using the ASCII character set: \7 (bell) \12 (newline) \40 (blank) \0 (null) \062 ('2') \115 ('M') The character represented by '\0' is often called a "null character," and has special significance, as we shall soon see. We can also write a character using a hexadecimal escape sequence \xddd consisting of a backslash, an x, and one or more hexadecimal digits. Character String LiteralsAll of the literals we've seen so far have primitive built-in types. There is one additional literalstring literalthat is more complicated. String literals are arrays of constant characters, a type that we'll discuss in more detail in Section 4.3 (p. 130). String literal constants are written as zero or more characters enclosed in double quotation marks. Nonprintable characters are represented by their underlying escape sequence. "Hello World!" // simple string literal "" // empty string literal "\nCC\toptions\tfile.[cC]\n" // string literal using newlines and tabs For compatibility with C, string literals in C++ have one character in addition to those typed in by the programmer. Every string literal ends with a null character added by the compiler. A character literal 'A' // single quote: character literal represents the single character A, whereas "A" // double quote: character string literal represents an array of two characters: the letter A and the null character. Just as there is a wide character literal, such as L'a' there is a wide string literal, again preceded by L, such as L"a wide string literal" The type of a wide string literal is an array of constant wide characters. It is also terminated by a wide null character. Concatenated String LiteralsTwo string literals (or two wide string literals) that appear adjacent to one another and separated only by spaces, tabs, or newlines are concatenated into a single new string literal. This usage makes it easy to write long literals across separate lines: // concatenated long string literal std::cout << "a multi-line " "string literal " "using concatenation" << std::endl; When executed this statement would print: a multi-line string literal using concatenation What happens if you attempt to concatenate a string literal and a wide string literal? For example: // Concatenating plain and wide character strings is undefined std::cout << "multi-line " L"literal " << std::endl; The result is undefinedthat is, there is no standard behavior defined for concatenating the two different types. The program might appear to work, but it also might crash or produce garbage values. Moreover, the program might behave differently under one compiler than under another.
Multi-Line LiteralsThere is a more primitive (and less useful) way to handle long strings that depends on an infrequently used program formatting feature: Putting a backslash as the last character on a line causes that line and the next to be treated as a single line. As noted on page 14, C++ programs are largely free-format. In particular, there are only a few places that we may not insert whitespace. One of these is in the middle of a word. In particular, we may not break a line in the middle of a word. We can circumvent this rule by using a backslash: // ok: A \ before a newline ignores the line break std::cou\ t << "Hi" << st\ d::endl; is equivalent to std::cout << "Hi" << std::endl; We could use this feature to write a long string literal: // multiline string literal std::cout << "a multi-line \ string literal \ using a backslash" << std::endl; return 0; } Note that the backslash must be the last thing on the lineno comments or trailing blanks are allowed. Also, any leading spaces or tabs on the subsequent lines are part of the literal. For this reason, the continuation lines of the long literal do not have the normal indentation.
|