c++获取当前时间的方法是什么

avatar
作者
筋斗云
阅读量:2

在C++中,可以使用std::chrono库来获取当前时间。

下面是一个使用std::chrono库获取当前时间的例子:

#include <iostream> #include <chrono>  int main() {     // 获取当前时间点     auto now = std::chrono::system_clock::now();      // 将时间点转换为时间戳     auto timestamp = std::chrono::system_clock::to_time_t(now);      // 输出时间戳     std::cout << "当前时间的时间戳:" << timestamp << std::endl;      return 0; } 

在上面的例子中,std::chrono::system_clock::now()函数可以获取当前时间点,然后可以使用std::chrono::system_clock::to_time_t()函数将时间点转换为时间戳。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!