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


71

我有:

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>]

1
我确定您可以改善此问题的标题。
Lightness Races in Orbit,

我将其更改为ifstream错误。
马克

那仍然是难以置信的模糊。您不能这样做以使其实际描述特定问题吗?
Lightness Races in Orbit,

Answers:



12

ifstream构造函数需要一个const char*,所以你需要做的ifstream file(filename.c_str());,以使其正常工作。


2

在c ++-11中,它也可以是std :: string。因此(安装c ++-11并将项目的方言更改为c ++-11)也可以解决此问题。


1
尽管您的答案是正确的,但它已经存在于接受的答案中,尽管不是很清楚:not a string pre-C++11.
Chris Maes
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.