감동, 마음이 움직이는 것
[c++] file append로 쓰기 본문
using namespace std;를 해준 경우에는 아래와 같이 써주면 된다.
sprintf(fname, "data/points_t%g.txt", maxt);
ofstream points(fname, ios_base::app);
std::ios_base::app인데 namespace로 std를 사용한다고 했으니까 앞에 std:: 이걸 해줄 필요없다.
하지만 using namespace std를 안 한 경우에는 아래의 출처에서 처럼 std::ios_base::app라고 써줘야 한다.
출처 - http://stackoverflow.com/questions/2393345/how-to-append-text-to-a-text-file-in-c
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[Latex] 그림 multiplot으로 안 그리고 tex에서 바로 table로 넣는 방법 (0) | 2016.09.12 |
---|---|
pdf파일로 gif만들기 (0) | 2016.09.12 |
[영어 Correction] thesis Ver.1 (0) | 2016.07.08 |
[mathematica] reduce 부등식 풀기 (0) | 2016.07.03 |
[log binning] c++ 코드와 python코드 (0) | 2016.06.27 |