gpt4 book ai didi

c++ - 在 Mac 上获取系统时区的 UTC 偏移量 (C++)

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:28:55 26 4
gpt4 key购买 nike

我正在尝试将系统时区表示为与 UTC 的分钟偏移量 - 类似于 Windows 函数 GetTimeZoneInformation(LPTIME_ZONE_INFORMATION)。 Corefoundation 或 Carbon 中有什么东西可以给我这些信息吗?

最佳答案

检查 Date and Time Programming Guide for Core Foundation .

这是未经测试的,但是怎么样:

CFTimeZoneRef tz = CFTimeZoneCopySystem();
CFTimeInterval minsFromGMT = CFTimeZoneGetSecondsFromGMT(tz, CFAbsoluteTimeGetCurrent()) / 60.0;
CFRelease(tz);

关于c++ - 在 Mac 上获取系统时区的 UTC 偏移量 (C++),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15005351/

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