在C ++中将char指针存储到字符串中的最有效方法是什么

时间:2012-02-24 01:18:22

标签: c++ pointers

在C ++中将char指针存储到字符串中的最有效方法是什么?

1 个答案:

答案 0 :(得分:3)

std::string类有一个适当的构造函数,它带有const char *参数:

const char *p = "hello world";
std::string s = std::string(p);
std::cout << s << std::endl;

那将打印

hello world