C++ 字符串
C++ 字符串
字符串用于存储文本/字符。
例如,"Hello World" 是一个字符串。
一个 string
变量包含用双引号括起来的字符集合。
示例
创建一个类型为 string
的变量,并为它赋值
string greeting = "Hello";
要使用字符串,必须在源代码中包含额外的头文件,即 <string>
库。
字符串用于存储文本/字符。
例如,"Hello World" 是一个字符串。
一个 string
变量包含用双引号括起来的字符集合。
创建一个类型为 string
的变量,并为它赋值
string greeting = "Hello";
要使用字符串,必须在源代码中包含额外的头文件,即 <string>
库。
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]