c++string赋值
时间: 2023-11-24 16:47:33 浏览: 78
C++结构体里面string类型赋值问题
C++中的string类型可以通过赋值运算符(=)进行赋值。例如:
```c++
#include <iostream>
#include <string>
using namespace std;
int main() {
string str1 = "hello";
string str2 = "world";
str1 = str2;
cout << str1 << endl; // 输出:world
return 0;
}
```
在上面的代码中,我们先定义了两个string类型的变量str1和str2,并分别赋值为"hello"和"world"。然后,我们将str2赋值给str1,此时str1的值变为"world"。
阅读全文