作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我正在执行下面的代码。
int main()
{
struct tm storage={0,0,0,0,0,0,0,0,0};
char *p = NULL;
p = (char *)strptime("2012-08-25 12:23:12","%Y-%m-%d %H:%M:%S",&storage);
char buff[1024]={0};
strftime(buff,1024,"%Y-%m-%d %H:%M:%S",&storage);
cout << buff << endl;
storage.tm_sec += 20;
strftime(buff,1024,"%Y-%m-%d %H:%M:%S",&storage);
cout << buff << endl;
mktime(&storage);
strftime(buff,1024,"%Y-%m-%d %H:%M:%S",&storage);
cout << buff << endl;
return 0;
}
如果执行上述程序,它会打印“2012-08-25 13:23:32”而不是“2012-08-25 12:23:32”。请帮助,为什么它会增加 tm_hour 值。如果我在程序中输入日期为“2012-02-25 12:23:32”,这会正常工作,这很令人困惑。
输出 ->
[user@rtpkvm55-vm2 root]$ ./a.out
2012-08-25 12:23:12
2012-08-25 12:23:32
2012-08-25 13:23:32
[user@rtpkvm55-vm2 root]$
我系统上的日期信息,-->
[user@rtpkvm55-vm2 root]$ date
Sat Aug 25 08:28:26 EDT 2012
最佳答案
会发生什么
您指定的日期具有夏令时,但在调用 mktime
时,storage.tm_isdst
为零。 mktime
看到这一点并认为“嘿,他们给了我一个带有错误夏令时标志的日期,让我们修复它”。然后将 tm_isdst
设置为 1 并更改 tm_hour
。
另见 this回答。
修复它
timegm
而不是 mktime
mktime
之前将时区设置为 UTC(另请参见 timegm
中的示例): setenv("TZ", "", 1);tzset();mktime();
boost::locale::date_time
页面上的问答部分)关于c++ - mktime() 函数 : increasing tm_hour count by one 的令人困惑的行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12122084/
我正在执行下面的代码。 int main() { struct tm storage={0,0,0,0,0,0,0,0,0}; char *p = NULL; p = (char *)strptime
我是一名优秀的程序员,十分优秀!