在C++中,可以使用以下三种方法声明和赋值string变量:
std::string str = "Hello, World!";
std::string str("Hello, World!");
这些方法都可以用来声明和初始化一个字符串变量,并将其赋值为特定的字符串。