ifstream::open() function using a string as the pa

2019-02-22 23:12发布

问题:

This question already has an answer here:

  • No matching function - ifstream open() 1 answer

I'm trying to make a program that asks for the file that they user would like to read from, and when I try to myfile.open(fileName) I get the error: "no matching function for call to std::basic_ifstream<char, std::char_traits<char> >::open(std::string&)'" at that line.

string filename;
cout<<"Enter name of file: ";
cin>>filename;
ifstream myFile;
myFile.open(filename); //where the error occurs.
myFile.close();

回答1:

In the previous version of C++ (C++03), open() takes only a const char * for the first parameter, instead of std::string. The correct way of calling it would then be:

myFile.open(filename.c_str());

In current C++ (C++11) that code is fine, though, so see if you can tell your compiler to enable support for it.