std::string性字符串后加一个变量
时间: 2024-05-03 22:15:17 浏览: 122
C++中字符串以及数组和指针的互相使用讲解
在C++中,可以通过将std::string与其他变量连接创建一个新的字符串。这可以通过多种方式实现,其中一种常见的方法是使用字符串拼接操作符"+"。
例如,假设有一个整数变量num,我们可以将其与std::string对象连接起来,形成一个新的字符串。示例代码如下:
```cpp
#include <iostream>
#include <string>
int main() {
int num = 10;
::string str = "The number is: " + std::to_string(num);
std::cout << << std::endl;
return 0;
}
```
在上述代码中,我们使用"+"操作符将整数变量num与字符串"The number is: "连接起来,并将结果赋值给std::string对象str。然后,我们使用std::cout输出str的内容。
输出结果将是:"The number is: 10"。
阅读全文