私はEclipseでコーディングしていますが、次のようなものがあります:
#include <ftream>
#include <iostream>
void read_file(){
char buffer[1025];
std::istringstream iss(buffer);
}
ただし、ビルドしようとすると、次のエラーが表示されます。variable 'std::istringstream iss' has initializer but incomplete type
簡単な考えはありますか?私はグーグルで調べましたが、この問題を抱えているほとんどの人は、正しいヘッダーファイルを含んでいなかったようです。
これには次のものが必要です。
#include <sstream>