使用GetTickCount()函数
- 功能:返回从操作系统启动所经过(elapsed)的毫秒数
- 返回值:DWORD
#include <stdio.h>
#include <iostream>
#include <windows.h>
int main(){
DWORD start_time = GetTickCount(); //开始时间
for (int i = 0; i < 100000000; i++) //计算for循环的时间
i++;
DWORD end_time = GetTickCount(); //结束时间
std::cout << "The run time is " << (end_time - start_time) << " ms" << std::endl;
system("pause");
return 0;
}
网友评论