vc如何加两个字符串相加
时间: 2023-05-29 07:06:23 浏览: 153
VB调用VC写的DLL 实现两个字符串相加成一个字符串
5星 · 资源好评率100%
在VC++中,可以通过使用加号(+)运算符将两个字符串连接起来。例如:
```c++
#include <iostream>
#include <string>
using namespace std;
int main()
{
string str1 = "Hello";
string str2 = "world";
string str3 = str1 + " " + str2;
cout << str3 << endl;
return 0;
}
```
输出结果为:
```
Hello world
```
在上面的代码中,我们先定义了两个字符串 `str1` 和 `str2`,然后使用加号运算符将它们连接起来,并将结果赋值给了另一个字符串 `str3`。最后,我们通过 `cout` 输出了 `str3` 的值,即 `"Hello world"`。
阅读全文