c 代码一次读取文本文件全部内容到string对象
目前所知最简单代码:
#include
#include
sd::ifstream in("readme.txt", ios::in);
std::istreambuf_iterator beg(in), end;
std::string strdata(beg, end);
in.close();
使用4行代码,即可将readme.txt的全部内容读取至字符串对象strdata中。
c 代码一次读取文本文件全部内容到string对象
目前所知最简单代码:
#include
#include
sd::ifstream in("readme.txt", ios::in);
std::istreambuf_iterator beg(in), end;
std::string strdata(beg, end);
in.close();
使用4行代码,即可将readme.txt的全部内容读取至字符串对象strdata中。