在C++中,可以使用std::string
类的构造函数来实现将cstring
转换为string
。下面是一个简单的示例:
#include <iostream>
#include <cstring>
#include <string>
int main() {
const char* cstr = "Hello, World!";
std::string str(cstr);
std::cout << "Converted string: " << str << std::endl;
return 0;
}
在上面的示例中,我们将一个const char*
类型的cstring
转换为std::string
类型的string
,并将其输出到控制台。通过使用std::string
类的构造函数,我们可以轻松地实现这种转换。