void searchString(const string selection,const string filename)
{
ifstream myfile;
string sline;
string sdata;
myfile.open(filename);
while(!myfile.eof())
{
getline(myfile,sline);
sdata = sdata + sline;
}
如何使用字符串文件名作为myfile.open(文件名)
最初我使用的是file.txt,但是如果我使用一个传入函数的变量,比如string filename,则会给我一个错误
myfile.open("file.txt");
错误消息如下:
main.cpp:203:25: error: no matching function for call to ‘std::basic_ifstream<char>::open(const string&)’
main.cpp:203:25: note: candidate is:
/usr/include/c++/4.6/fstream:531:7: note: void std::basic_ifstream<_CharT, _Traits>::open(const char*, std::ios_base::openmode) [with _CharT = char, _Traits = std::char_traits<char>, std::ios_base::openmode = std::_Ios_Openmode]
/usr/include/c++/4.6/fstream:531:7: note: no known conversion for argument 1 from ‘const string {aka const std::basic_string<char>}’ to ‘const char*’
make: *** [main.o] Error 1
答案 0 :(得分:7)
std::ifstream::open
的构造函数(对于您正在使用的特定C ++标准)不允许std::string
参数,因此您必须使用:
myfile.open(filename.c_str());
构造函数需要使用const char *
成员函数从std::string
对象获取的类型c_str()
。