std::ofstream Intro
std::ofstream outfile;
if (append)
outfile.open(name, std::ios_base::app);
else
outfile.open(name);
outfile << content << std::endl;
posted on 2017-09-08 18:07 fanbird2008 阅读(147) 评论(0) 收藏 举报
std::ofstream outfile;
if (append)
outfile.open(name, std::ios_base::app);
else
outfile.open(name);
outfile << content << std::endl;
posted on 2017-09-08 18:07 fanbird2008 阅读(147) 评论(0) 收藏 举报