gpt4 book ai didi

c++11 - 将计时持续时间转换为 time_point

转载 作者:行者123 更新时间:2023-12-03 16:06:51 29 4
gpt4 key购买 nike

如何将计时持续时间转换为时间点,该时间点晚于具有给定持续时间的时钟纪元?我试图在计时时钟中找到纪元时间,但没有成功。

最佳答案

来自 20.12.6 [time.point] 的概要:

template <class Clock, class Duration = typename Clock::duration>
class time_point
{
public:
constexpr explicit time_point(const duration& d); // same as time_point() + d

这可以使用(例如),如:
using namespace std::chrono;
system_clock::time_point tp{30min}; // Needs C++14 for the literal

尽管标准中没有指定 system_clock::time_point,但实际上这会创建一个 time_point指 1970-01-01 00:30:00 UTC。

关于c++11 - 将计时持续时间转换为 time_point,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30756919/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com