我对Ubuntu很新,但我似乎不能得到这个工作。它在我的学校计算机上工作正常,我不知道我不在做什么。我已经检查usr / include和time.h是有很好。下面是代码:
原文链接:https://www.f2er.com/ubuntu/353004.html#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; }
我使用CodeBlocks作为我的IDE来构建和运行。任何帮助将是伟大的,谢谢。