IBM AIX std :: clock()?

时间:2018-04-07 15:21:22

标签: c++ aix

我在IBM AIX中执行以下代码。

int main(void)
{
    printf( "start\n");
    double time1 = (double)clock();      /* get initial time */
    time1 = time1 / CLOCKS_PER_SEC;      /*    in seconds    */

    boost::this_thread::sleep_for(boost::chrono::seconds(5));

    /* call clock a second time */
    double time2 = (((double)clock()) / CLOCKS_PER_SEC);
    double timedif = time2 - time1;
    printf( "The elapsed time is %lf seconds, time1:%lf time2:%lf CLOCKS_PER_SEC:%ld\n", 
            timedif));
}

结果是:

  

2018-04-07 09:58:37开始   
2018-04-07 09:58:42经过的时间是0.000180秒,时间1:0.000000   time2:0.000181 CLOCKS_PER_SEC:1000000

我不知道为什么经过的时间是0.000180(为什么不是5)?

1 个答案:

答案 0 :(得分:1)

根据手册

  

返回程序消耗的处理器时间。

程序消耗的CPU时间,不是物理时间。睡眠程序不占用CPU时间。因此,在原始单词中,它是从mainsleep的时间间隔加上sleep之后的时间间隔直到返回。

如果您想获得系统/实时,请查看std::chrono::system_clock课程。

#include <chrono>
using std::chrono::system_clock;
system_clock::time_point time_now = system_clock::now();