我试图在我的简单while循环中获取当前的原始时间(这是人类不可读的时间)。我搜索了time_t时钟周期,但找不到任何信息。

第一个问题:有人知道C ++中time_t的时钟周期吗?

第二个问题:当我打印时间ltime时,它看起来一直都一样。

time_t ltime;
while (count <= 1000) {
  time( & ltime); //I expect this to get current time in every cycle
  cout << "Current time " << ltime << endl;
  count++;
}


我已经检查了this链接,但是它没有提供有关时钟周期的信息。

最佳答案

使用std::chrono::high_resolution_clock::now()

编辑:

使用std::system_clock::now()std::chrono::system_clock::to_time_t()

08-16 02:06