gpt4 book ai didi

c++ - 如何修复没有匹配函数 ifstream 错误?

转载 作者:行者123 更新时间:2023-11-30 01:18:32 24 4
gpt4 key购买 nike

<分区>

我不确定如何修复错误(如下)。有人可以帮助我吗?

顺便说一句:它在 VS2012 上运行良好,但是当我在 linux 终端上运行时它给了我这个错误

错误:

Librarian.cpp:20: error: no matching function for call to ‘std::basic_ifstream >::basic_ifstream(s td::string&, const std::_Ios_Openmode&)’

图书管理员.cpp:

bool Librarian::addBooks(string file)
{
ifstream infile(file);
if (!infile)
{
cerr << "File could not be opened." << endl;
return false;
}

for (;;) {
char s[MAX];
infile.getline(s, MAX);
if (infile.eof()) break;
cout << s << endl;
}
return true;
}

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com