C++中如何拼接字符串
时间: 2024-02-11 12:05:01 浏览: 53
C++解析json字符串
在C++中,可以使用`+`符号或`+=`运算符来拼接字符串。例如:
```c++
std::string str1 = "Hello";
std::string str2 = "World";
std::string str3 = str1 + " " + str2;
std::cout << str3 << std::endl; // 输出:Hello World
std::string str4 = "Hello";
str4 += " ";
str4 += "World";
std::cout << str4 << std::endl; // 输出:Hello World
```
需要注意的是,使用`+`符号来拼接字符串时,要确保至少一个操作数是`std::string`类型,否则会出现编译错误。
阅读全文