G ++ настаивает на поиске stdio.h getline вместо std :: getline (string) - PullRequest
0 голосов
/ 04 декабря 2018

Часть моей программы:

#include <iostream>
#include <string>
#include <vector>
#include <fstream>
#include <sstream>

using namespace std;


/* Works for istringstream */
void func(const string& text) {
    istringstream ff(text);
    string s;

    getline(ff, s, '-');
}


/* Doesnt work for ifstream */
void read_input_file(const ifstream& inputFile) {
    string s;

    getline(inputFile, s, '\n');
}


int main(int argc, char * argv[]){

    ifstream inputfile;
    ofstream outputFile;

    inputfile.open(argv[1], ifstream::in);
    if (!inputfile.is_open()) 
        return -1;

    read_input_file(inputfile);

    inputfile.close();

    return 0;
}

Оба istringstream и ifstream равны istream, однако в read_input_file он пытается соответствовать getline с определенным из stdio.h ...

test.cpp:23:28: error: no matching function for call to ‘getline(const ifstream&, std::__cxx11::string&, char)’

  getline(inputFile, s, '\n');

g++ -Wall -c "test.cpp" 

test.cpp: In function ‘void read_input_file(const ifstream&)’:
test.cpp:23:28: error: no matching function for call to ‘getline(const ifstream&, std::__cxx11::string&, char)’
  getline(inputFile, s, '\n');
                            ^
In file included from /usr/include/c++/8/cstdio:42,
                 from /usr/include/c++/8/ext/string_conversions.h:43,
                 from /usr/include/c++/8/bits/basic_string.h:6400,
                 from /usr/include/c++/8/string:52,
                 from /usr/include/c++/8/bits/locale_classes.h:40,
                 from /usr/include/c++/8/bits/ios_base.h:41,
                 from /usr/include/c++/8/ios:42,
                 from /usr/include/c++/8/ostream:38,
                 from /usr/include/c++/8/iostream:39,
                 from test.cpp:1:
/usr/include/stdio.h:622:18: note: candidate: ‘__ssize_t getline(char**, size_t*, FILE*)’
 extern __ssize_t getline (char **__restrict __lineptr,
                  ^~~~~~~
/usr/include/stdio.h:622:18: note:   no known conversion for argument 1 from ‘const ifstream’ {aka ‘const std::basic_ifstream<char>’} to ‘char**’
...

Любые идеи, почему нужно найти неправильного кандидата вместо std :: getline

1 Ответ

0 голосов
/ 04 декабря 2018

Ваша проблема inputFile const в read_input_file.inputFile необходимо изменить на getline, чтобы не было перегрузки, которая требует const ifstream&.К сожалению, компилятор, будучи полезным и показывая вам другие возможные перегрузки, не дает вам знать об этом факте.

...