095. 파일 내용을 모두 읽기 (stringstream)

jychan99·2022년 1월 3일
0
#include <iostream>
#include <sstream>
#include <fstream>
#include <string>
using namespace std;

int main()
{
	ifstream ifs("삼한시대 마한 태기왕 전설.txt");

	stringstream ss;

	ss << ifs.rdbuf();
	ifs.close();

	string read = "";

	cout << "== !ss.eof ==" << endl;
	while (!ss.eof())
	{
		ss >> read;
		cout << read << " ";
	}

	cout << endl << "== !ss.str() ==" << endl;
	read = ss.str();
	cout << endl << read << endl;

	return 0;
}
profile
내가 지금 두려워 하고 있는 일이 바로 내가 지금 해야 할 일이다. 🐍

0개의 댓글

관련 채용 정보