私のコード:
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
.
.
.
void function() {
ofstream inputFile;
.
.
.
inputFile.getline (inputFile, inputField1, ",");
}
何らかの理由で、g ++を使用してこれをコンパイルすると、わかりません
error: ‘struct std::ofstream’ has no member named ‘getline’
また、補足として、エラーも発生します
error: invalid conversion from ‘void*’ to ‘char**’
error: cannot convert ‘std::string’ to ‘size_t*’ for argument ‘2’ to ‘ssize_t getline(char**, size_t*, FILE*)’
しかし、パラメーターを間違った方法で取得したと思います。
誰でも光を当てるのを助けることができますか?