0

我正在使用一些相当简单的 C++ 代码将文件的内容转换为std::string

// Read contents of file given to a std::string.
std::string f = "main.js";
std::ifstream ifs(f.c_str());
std::stringstream sstr;
sstr << ifs.rdbuf();
std::string code = sstr.str();

但是当我编译时,我得到了这个错误:

error: could not convert ‘((*(const std::allocator<char>*)(& std::allocator<char>())),
(operator new(4u), (<statement>, ((std::string*)<anonymous>))))’ from ‘std::string*
{aka std::basic_string<char>*}’ to ‘std::string {aka std::basic_string<char>}’

我知道这可能是一个简单的错误,但我仍然在学习 C++。应该只是一个简单的类型混合或其他东西。

根据要求,这是我正在尝试做的一些示例代码:

std::string Slurp(std::string f)
{
    std::ifstream ifs(f.c_str());
    std::stringstream sstr;
    sstr << ifs.rdbuf();
    std::string code = sstr.str();
    return code;
}

谢谢。

4

1 回答 1

2

new除非您想要动态分配,否则不要使用 C++ 创建对象。new返回一个指针。这应该有效。

std::string f("main.js");
std::ifstream ifs(f.c_str());

的构造函数std::ifstream期望 aconst char *所以你需要使用std::string::c_str()

于 2013-11-02T17:04:38.367 回答