从回购中读取单个文件的问题

时间:2018-03-07 08:18:03

标签: c++ visual-studio fstream

我正在阅读repo中的文件,但我在编译代码时遇到了问题。我的github合作伙伴(使用mac)没有代码问题但是当我克隆他的回购时,我得到了这个问题。

背景资料: 我最近搬进了Linux世界,正在运行Elementary。由于我的其他编码项目有效,不确定这里是否存在问题,但它是背景信息。

error: no matching function for call to ‘std::basic_ifstream<char>::open(std::__cxx11::string&)’
 infile.open(fullPath); // Open it up!


   In file included from AVL.cpp:6:0:
    /usr/include/c++/5/fstream:595:7: note: candidate: 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]
           open(const char* __s, ios_base::openmode __mode = ios_base::in)
           ^

/usr/include/c++/5/fstream:595:7: note:   no known conversion for argument 1 from ‘std::__cxx11::string {aka std::__cxx11::basic_string<char>}’ to ‘const char*’
Makefile:4: recipe for target 'main' failed
make: *** [main] Error 1

这是我的功能:

void AVL::parseFileInsert(string fullPath) {
    ifstream infile;
    infile.open(fullPath); // Open it up!
    std::string line;
    char c;
    string word = "";
    //int jerry = 0;
    while (getline(infile, line))
    {
        // Iterate through the string one letter at a time.
        for (int i = 0; i < line.length(); i++) {

            c = line.at(i); // Get a char from string
            tolower(c);        
            // if it's NOT within these bounds, then it's not a character
            if (! ( ( c >= 'a' && c <= 'z' ) || ( c >= 'A' && c <= 'Z' ) ) ) {

                //if word is NOT an empty string, insert word into bst
                if ( word != "" ) {
                    insert(word);
                    //jerry += 1;
                    //cout << jerry << endl;
                    //reset word string
                    word = "";
                }
            }
            else {
                word += string(1, c);
            }
         }
     }
};

非常感谢!

1 个答案:

答案 0 :(得分:0)

C ++ 11中引入了std::basic_fstream::open带有const std::string &参数的重载。如果代码用一个编译器而不是另一个编译器编译,那么一个编译器支持C ++ 11而另一个编译器不支持(由于太旧,或者没有在命令行上指定C ++标准)

如果您无法切换到C ++ 11编译器(或更改命令行以启用C ++ 11支持),您只需更改代码行

infile.open(fullPath); // Open it up!

infile.open(fullPath.c_str()); // Open it up!

这不会改变语义,只有一个例外:std::string支持嵌入的NUL字符,而c_str()返回的C风格字符串则不支持。我不知道文件系统允许在文件/目录名中包含嵌入的NUL字符,因此差异具有理论性质。