设为首页 加入收藏

TOP

2.2 Literal Constants (5)
2013-10-07 15:25:07 来源: 作者: 【 】 浏览:90
Tags:2.2 Literal Constants

For compatibility with C, string literals in C++(www.cppentry.com) have one character in addition to those typed in by the programmer. Every string literal endswith a null character added by the compiler. A character literal

  1. ’A’ // single quote: character literal 

represents the single character A, whereas

  1. "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

  1. L’a’ 

there is a wide string literal, again preceded by L, such as

  1. 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 Literals

Two 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:

  1. // concatenated long string literal  
  2. std::cout << "a multi-line " 
  3. "string literal " 
  4. "using concatenation" 
  5. << 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:

  1. // Concatenating plain and wide character strings is undefined  
  2. std::cout << "multi-line " L"literal " << std::endl; 

The result is undefined—that 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.

】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇2.2 Literal Constants (6) 下一篇2.2 Literal Constants (4)

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·哈希表 - 菜鸟教程 (2025-12-24 20:18:55)
·MySQL存储引擎InnoDB (2025-12-24 20:18:53)
·索引堆及其优化 - 菜 (2025-12-24 20:18:50)
·Shell 中各种括号的 (2025-12-24 19:50:39)
·Shell 变量 - 菜鸟教 (2025-12-24 19:50:37)