以下代码用于在日志中打印时间:
#define PRINTTIME() struct tm * tmptime;
time_t tmpGetTime;
time(&tmpGetTime);
tmptime = localtime(&tmpGetTime);
cout << tmptime->tm_mday << "/" <<tmptime->tm_mon+1 << "/" << 1900+tmptime->tm_year << " " << tmptime->tm_hour << ":" << tmptime->tm_min << ":" << tmptime->tm_sec<<">>";
有什么办法可以增加毫秒吗?
最佳答案
要获得毫秒级的精度,您必须使用特定于您的OS的系统调用。
在Linux中,您可以使用
#include <sys/time.h>
timeval tv;
gettimeofday(&tv, 0);
// then convert struct tv to your needed ms precision
timeval
具有微秒级的精度。在Windows中,您可以使用:
#include <Windows.h>
SYSTEMTIME st;
GetSystemTime(&st);
// then convert st to your precision needs
当然,您可以使用Boost为您做到这一点:)