是的,C++中的字符串赋值操作支持链式操作。例如:
#include#include int main() { std::string str1 = "Hello"; std::string str2 = "World"; str1 = str2 = "Goodbye"; // 链式赋值操作 std::cout << str1 << " " << str2 << std::endl; // 输出:Goodbye Goodbye return 0; }
在上面的例子中,我们使用链式赋值操作将字符串str1和str2都赋值为"Goodbye"。链式赋值操作使代码更简洁和易读。