取得纳秒级时间

QueryPerformanceCounter获得CPU执行计数值

__int64 startTime

if(QueryPerformanceCounter((LARGE_INTEGER *)&startTime))

printf("QueryPerformanceCounter:%lf\n",(double)startTime);
原文地址:https://www.cnblogs.com/wubiyu/p/1289034.html