2014-06-17から1日間の記事一覧

高分解能 経過時間の計測方法 #include "stdafx.h" #include #include int _tmain(int argc, _TCHAR* argv[]) { LARGE_INTEGER s,f,e; QueryPerformanceFrequency(&f); QueryPerformanceCounter(&s); { Sleep(1000); // 1sec } QueryPerformanceCounter(&e);…