阅读量:1
在C++中,可以使用std::string
类来创建字符串。下面是一些常见的创建字符串的方法:
- 使用字符串字面量创建字符串:
std::string str = "Hello, World!";
- 使用
std::string
构造函数创建字符串:
std::string str("Hello, World!");
- 使用
+
操作符连接字符串:
std::string str1 = "Hello"; std::string str2 = "World"; std::string str = str1 + ", " + str2 + "!";
- 使用
append()
函数添加字符串:
std::string str = "Hello"; str.append(", World!");
- 使用
insert()
函数插入字符串:
std::string str = "Hello"; str.insert(5, ", World!");
- 使用
substr()
函数截取子字符串:
std::string str = "Hello, World!"; std::string subStr = str.substr(7, 5); // 从索引7开始截取长度为5的子字符串
这些只是一些创建字符串的常见方法,实际上还有很多其他操作和函数可以用来创建和操作字符串。