最佳答案
我是 Ubuntu 的新手,但我似乎不能让这个工作。它在我学校的电脑上运行得很好,我不知道我在做什么。我检查了 Usr/include和时间,没问题。密码如下:
#include <iostream>
#include <time.h>
using namespace std;
int main()
{
timespec time1, time2;
int temp;
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time1);
//do stuff here
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time2);
return 0;
}
我使用代码块作为我的 IDE 来构建和运行。任何帮助都将是伟大的,谢谢。