标签: c++
我想找一个程序的运行时间(不是CPU时间)。我写了一个c ++代码如下。
time_t start,end; time (&start); //code time (&end); double dif = difftime (end,start); cout << dif ;
我得到了特定实例的输出为2.这意味着什么?如何更准确地测量经过时间(挂钟时间)