- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我对此做了一些研究,我有相当令人信服的证据证明
回答YES,回答NO。我不确定该相信哪一方。
首先,我在 cppreference.com 上找到的文档,以及
http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/n4659.pdf似乎对此无话可说。
我认为这是语言环境不支持时区的证据。
但是https://en.cppreference.com/w/cpp/locale/time_get/get和 https://en.cppreference.com/w/cpp/locale/time_put/put
两者都说:
%z writes offset from UTC in the ISO 8601 format (e.g. -0430), or no characters if the time zone information is not available %Z writes time zone name or abbreviation, or no characters if the time zone information is not available (locale dependent)
#include <iostream>
#include <cstdlib>
#include <locale>
#include <sstream>
using namespace std;
int main ()
{
// locale l;
locale l = locale::classic ();
tm when{};
const time_put<char>& tmput = use_facet<time_put<char>> (l);
ostringstream oss;
oss.imbue (l);
static const string kTZOffsetPattern_{"%z"};
tmput.put (oss, oss, ' ', &when, kTZOffsetPattern_.c_str (), kTZOffsetPattern_.c_str () + kTZOffsetPattern_.length ());
cout << oss.str ();
return 0;
}
最佳答案
直接回答您的问题
Does a C++ locale have an associated time zone?
strftime
的规范中说:
%Z
is replaced by the locale’s time zone name or abbreviation, or by no characters if no time zone is determinable.[tm_isdst]
struct lconv
的 C 规范不提供此类成员来存储该信息。规范确实允许实现添加这样的成员,但实际上,实现不使用 C 语言环境存储该信息。
time_put
和
time_get
根据
strftime
的 C 规范定义自己,
strptime
的 POSIX 规范,以及一些不包含时区名称或缩写的附加内容。
strftime
的 POSIX 规范比 C 规范详细得多,并删除了与“语言环境”的关联:
Z
Replaced by the timezone name or abbreviation, or by no bytes if no timezone information exists.[ tm_isdst]
struct lconv
的 POSIX 规范也比 C 规范详细得多,但仍不提供时区名称或缩写的存储。
%z
) 和时区缩写 (
%Z
) 可能可用,但将作为本地时区数据的一部分存储,而不是与当前区域设置数据一起存储,主要是因为没有好的时区和语言环境之间的一对一映射。
tm when{};
将
tm
的所有成员归零,包括
tm_isdst
.当
tm_isdst
为零,这意味着已知夏令时无效,对于此特定
tm
.
tm
也允许具有标准未指定的成员。一个流行的扩展是拥有成员(member)
tm_gmtoff
它以秒为单位保存 UTC 偏移量。如果您的 Linux 实现有这样的成员,
tm when{};
将其设置为 0 秒。如果您的 Windows 实现没有这样的成员,则本地时区的 UTC 偏移量将存储在其他地方。这解释了您所看到的差异,并且两种实现都符合要求。
std::chrono::time_zone
的新类型。 .
time_zone
的成员函数之一是:
template<class Duration> sys_info get_info(const sys_time<Duration>& st) const;
sys_time<Duration>
只是一个
system_clock::time_point
,但任何精度。所以你给了一个
time_zone
time_point
,你会得到一个
sys_info
里面包含了各种有用的信息
time_zone
在那
time_point
:
struct sys_info
{
sys_seconds begin;
sys_seconds end;
seconds offset;
minutes save;
string abbrev;
};
[begin, end)
告诉您此信息在何时有效(这些是 UTC 时间点)。 offset
是 time_zone
的当前 UTC 偏移量 seconds
. save != 0min
, time_zone
目前被认为是夏令时。 time_zone
的当前缩写存储在 abbrev
. const time_zone* current_zone();
#include <chrono>
#include <iostream>
int
main()
{
using namespace std::chrono;
std::cout << current_zone()->get_info(system_clock::now()) << '\n';
}
2018-03-11 07:00:00
2018-11-04 06:00:00
-04:00:00
01:00
EDT
date
中而不是
std::chrono
.
#include "date/tz.h"
#include <chrono>
#include <iostream>
int
main()
{
using namespace date;
using namespace std::chrono;
std::cout << locate_zone("Australia/Sydney")->get_info(system_clock::now()) << '\n';
}
2018-10-06 16:00:00
2019-04-06 16:00:00
11:00:00
01:00
AEDT
关于c++ - C++ 语言环境是否有关联的时区?如果是,您如何访问它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52839648/
至少在某些 ML 系列语言中,您可以定义可以执行模式匹配的记录,例如http://learnyouahaskell.com/making-our-own-types-and-typeclasses -
这可能是其他人已经看到的一个问题,但我正在尝试寻找一种专为(或支持)并发编程而设计的语言,该语言可以在 .net 平台上运行。 我一直在 erlang 中进行辅助开发,以了解该语言,并且喜欢建立一个稳
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be
我正在寻找一种进程间通信工具,可以在相同或不同系统上运行的语言和/或环境之间使用。例如,它应该允许在 Java、C# 和/或 C++ 组件之间发送信号,并且还应该支持某种排队机制。唯一明显与环境和语言
我有一些以不同语言返回的文本。现在,客户端返回的文本格式为(en-us,又名美国英语): Stuff here to keep. -- Delete Here -- all of this below
问题:我希望在 R 中找到类似 findInterval 的函数,它为输入提供一个标量和一个表示区间起点的向量,并返回标量落入的区间的索引。例如在 R 中: findInterval(x = 2.6,
我是安卓新手。我正在尝试进行简单的登录 Activity ,但当我单击“登录”按钮时出现运行时错误。我认为我没有正确获取数据。我已经检查过,SQLite 中有一个与该 PK 相对应的数据。 日志猫。
大家好,感谢您帮助我。 我用 C# 制作了这个计算器,但遇到了一个问题。 当我添加像 5+5+5 这样的东西时,它给了我正确的结果,但是当我想减去两个以上的数字并且还想除或乘以两个以上的数字时,我没有
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 4 年前。 Improve th
这就是我所拥有的 #include #include void print(int a[], int size); void sort (int a[], int size); v
你好,我正在寻找我哪里做错了? #include #include int main(int argc, char *argv[]) { int account_on_the_ban
嘿,当我开始向数组输入数据时,我的代码崩溃了。该程序应该将数字读入数组,然后将新数字插入数组中,最后按升序排列所有内容。我不确定它出了什么问题。有人有建议吗? 这是我的代码 #include #in
我已经盯着这个问题好几个星期了,但我一无所获!它不起作用,我知道那么多,但我不知道为什么或出了什么问题。我确实知道开发人员针对我突出显示的行吐出了“错误:预期表达式”,但这实际上只是冰山一角。如果有人
我正在编写一个点对点聊天程序。在此程序中,客户端和服务器功能写入一个唯一的文件中。首先我想问一下我程序中的机制是否正确? I fork() two processes, one for client
基本上我需要找到一种方法来发现段落是否以句点 (.) 结束。 此时我已经可以计算给定文本的段落数,但我没有想出任何东西来检查它是否在句点内结束。 任何帮助都会帮助我,谢谢 char ch; FI
我的函数 save_words 接收 Armazena 和大小。 Armazena 是一个包含段落的动态数组,size 是数组的大小。在这个函数中,我想将单词放入其他称为单词的动态数组中。当我运行它时
我有一个结构 struct Human { char *name; struct location *location; int
我正在尝试缩进以下代码的字符串输出,但由于某种原因,我的变量不断从文件中提取,并且具有不同长度的噪声或空间(我不确定)。 这是我的代码: #include #include int main (v
我想让用户选择一个选项。所以我声明了一个名为 Choice 的变量,我希望它输入一个只能是 'M' 的 char 、'C'、'O' 或 'P'。 这是我的代码: char Choice; printf
我正在寻找一种解决方案,将定义和变量的值连接到数组中。我已经尝试过像这样使用 memcpy 但它不起作用: #define ADDRESS {0x00, 0x00, 0x00, 0x00, 0x0
我是一名优秀的程序员,十分优秀!