可能重复:
Cclock()
函数只返回一个零
我运行以下代码来测试 clock() 函数的工作。我在 ubuntu 12.04 上工作。
#include <stdio.h>
#include <time.h>
#include <iostream>
using namespace std;
double diffclock(clock_t clock1,clock_t clock2)
{
double diffticks=clock1-clock2;
double diffms=(diffticks*10)/CLOCKS_PER_SEC;
return diffms;
}
int main()
{
string name;
int i;
clock_t begin=clock();
cout << "Hi what is your name? ";
getline(cin, name);
clock_t end=clock();
cout << "Time elapsed: " << double(diffclock(end,begin)) << " ms"<< endl;
return 0;
}
但无论我花多少时间写下我的名字,经过的时间总是显示为 0ms。
你能告诉我有什么问题吗?