std::string如何添加字符
时间: 2023-07-08 17:48:41 浏览: 57
将Windows字符串资源加载到std :: string或std :: wstring中
要向 std::string 添加字符,可以使用成员函数 push_back() 或 append()。例如,使用 push_back() 向字符串末尾添加一个字符:
```
std::string str = "hello";
str.push_back('!');
```
现在,字符串 str 的值将变成 "hello!"。
或者,使用 append() 向字符串末尾添加一个字符:
```
std::string str = "hello";
str.append("!");
```
现在,字符串 str 的值将变成 "hello!"。
阅读全文