获取当前系统本地时间,精确到毫秒的实例
实例如下: #include <sys> #include <chrono> char* cur_time_c(char strDateTime[32]) { struct timeb tp_cur; ftime(&tp_cur); struct tm btm; #ifdef WIN32 localtime_s(&btm, &tp_cur.time); #else localtime_r(&tp_cur.time, &btm); #endif sprintf(strDateTime, d-d-d d:d:d.d,