Scusate se questo è piuttosto noobish, ma sono abbastanza nuovo in C ++. Sto provando ad aprire un file e leggerlo usando ifstream
:
vector<string> load_f(string file) {
vector<string> text;
ifstream ifs(file);
string buffer, str_line;
int brackets = 0;
str_line = "";
while ( getline(ifs, buffer) ) {
buffer = Trim( buffer );
size_t s = buffer.find_first_of("()");
if (s == string::npos) str_line += "" + buffer;
else {
while ( s != string::npos ) {
str_line += "" + buffer.substr(0, s + 1);
brackets += (buffer[s] == '(' ? 1 : -1);
if ( brackets == 0 ) {
text.push_back( str_line );
str_line = "";
}
buffer = buffer.substr(s + 1);
s = buffer.find_first_of("()");
}
}
}
return text;
}
Tuttavia, visualizzo il seguente errore e non sono sicuro di come risolvere:
variable 'std::ifstream ifs' has initializer but incomplete type
Risposte molto apprezzate. Si noti che non l'ho mai dimenticato #include <fstream>
, poiché molti hanno ottenuto l'errore a causa del solo dimenticare di includere l'intestazione.
MODIFICARE:
Risulta che in realtà ho dimenticato di includere fstream
, ma l'avevo dimenticato a causa dello spostamento della funzione in un altro file.
<iostream>
. Lo <fstream>
farà solo.