std::time_t 与 C++ 中的时间点有何不同?

发布于 2025-01-17 13:27:26 字数 373 浏览 0 评论 0 原文

如何 std :: time_t :: time_t 与< 时间点 表示当前时间?

它们不是1970年1月1日从同一开始的时代吗?

How is std::time_t different from time point representing the current time?

Are they not the same thing i.e epoch from same start Jan 1 1970?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尽揽少女心 2025-01-24 13:27:27

std :: time_t 正如引用所说的,最终是算术类型(即 int long nosigned long long long /代码>等)。 time_point 是一种模板结构,允许在算术上进行许多不同的操作,例如使用 time_point_cast_cast )将转换为不同的时间单元(即 milliseconds ) 。

std::time_t, as the reference says, ends up being an arithmetic type (i.e. int, long, unsigned long long, etc.). time_point is a templated structure that allows many different operations on top of arithmetic, like converting into a different time unit (i.e. milliseconds, using time_point_cast).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文