如何以C为单位获取当前时间(以毫秒为单位)?我正在做以下几秒钟的时间:
struct tm ptm;
now = time(NULL);
localtime_r(&now,ptm);
myTime= (ptm->tm_hour * 3600) + (ptm->tm_min * 60) + (ptm->tm_sec);
查看time.h,struct tm
中没有毫秒成员。
答案 0 :(得分:5)
答案 1 :(得分:0)
我使用 ftime 进行时间跟踪(link text)