标签: c++ pointers
在C ++中将char指针存储到字符串中的最有效方法是什么?
答案 0 :(得分:3)
std::string类有一个适当的构造函数,它带有const char *参数:
std::string
const char *
const char *p = "hello world"; std::string s = std::string(p); std::cout << s << std::endl;
那将打印
hello world