C ++ ifstream错误使用字符串作为打开文件路径。

时间:2011-06-12 18:08:20

标签: c++ ifstream

我有:

string filename: 
ifstream file(filename);

编译器抱怨ifstream文件和字符串之间没有匹配。我需要将文件名转换为某些内容吗?

这是错误:

error: no matching function for call to ‘std::basic_ifstream<char, std::char_traits<char> >::basic_ifstream(std::string&)’
/usr/include/c++/4.4/fstream:454: note: candidates are: std::basic_ifstream<_CharT, _Traits>::basic_ifstream(const char*, std::_Ios_Openmode) [with _CharT = char, _Traits = std::char_traits<char>]

3 个答案:

答案 0 :(得分:132)

更改

ifstream file(filename);

ifstream file(filename.c_str());

因为ifstream的构造函数需要const char*,而不是string预C ++ 11。

答案 1 :(得分:11)

ifstream构造函数需要const char*,因此您需要执行ifstream file(filename.c_str());才能使其正常工作。

答案 2 :(得分:2)

在c ++ - 11中它也可以是一个std :: string。所以(安装c ++ - 11和)将你的项目方言改为c ++ - 11也可以解决这个问题。