출처 : http://albiones.tistory.com/entry/%ED%98%84%EC%9E%AC-%EC%8B%9C%EA%B0%84-miliseconde%EB%B0%80%EB%A6%AC%EC%84%B8%EC%BB%A8%EB%93%9C%EA%B9%8C%EC%A7%80-%EA%B0%80%EC%A0%B8%EC%98%A4%EA%B8%B0
현재 시간을 millisecond까지 가져오기 위해서는 다음과 같이 사용하면 된다.
1 2 3 4 5 | SYSTEMTIME cur_time; GetLocalTime(&cur_time); CString strTime; strTime.Format("[%02d:%02d:%02d.%03d]",cur_time.wHour, cur_time.wMinute, cur_time.wSecond, cur_time.wMilliseconds); | cs |
'Programming > C&C++' 카테고리의 다른 글
STL Queue 사용법 (0) | 2017.07.19 |
---|---|
[C++] inet_addr, htons 함수 (0) | 2017.06.28 |
C++ string 정리 (C++ 문자열) (0) | 2017.06.26 |
VS2013 멀티바이트(MultiByte) 설정 사용하기 위한 준비단계 (0) | 2017.05.19 |
CMake로 프로젝트 생성 후 프로젝트 INSTALL Error (0) | 2017.05.18 |