C++中,可以使用以下幾種方法給string類型賦值:
std::string str1 = "Hello";
std::string str2 = str1;
std::string str = "Hello World";
std::string str1 = "Hello";
std::string str2;
str2.assign(str1);
std::string str1 = "Hello World";
std::string str2;
str2.assign(str1, 0, 5); // 將str1的前5個字符賦值給str2
std::string str1 = "Hello";
std::string str2 = " World";
str1.append(str2);
這些方法可以根據具體的需求選擇適合的賦值方式。