今天無事,測試了下Windows上幾個獲取時間戳的函數效率 函數
機器性能: 性能
CPU I7 2600K 未超頻 測試
測試1億次調用 code
1. CRT 的time()函數耗時在1秒左右 it
2. Win API 的GetTickCount() 在300毫秒左右,GetTickCount64() 在500毫秒左右 asm
3 .Wimm.lib 的timeGetTime()在800毫秒左右 class
4 .//這段代碼的耗時測試在8秒左右 效率
inline unsigned __int64 GetCycleCount() { __asm _emit 0x0F __asm _emit 0x31 }