gpt4 book ai didi

c++ - 复制结构 tm

转载 作者:行者123 更新时间:2023-11-27 23:54:29 27 4
gpt4 key购买 nike

glibc 版本的 struct tm 有额外的字段

long tm_gmtoff;           /* Seconds east of UTC */
const char *tm_zone; /* Timezone abbreviation */

(引用:http://linux.die.net/man/3/ctime)我的问题是:如果我有一个名为 struct tm a 的数据,并且我想按照以下代码将其复制到另一个 struct tm b:

time_t t = time(0);
const tm *pa = localtime(&t);
struct tm a;
if(pa) {
memcpy(&a, pa, sizeof(a));
}

但是,tm_gmtoff 和 tm_zone 会怎样?如何也复制这些字段?

最佳答案

这是您的编译器的工作。它将采取所有必要的行动。
只是做:

struct tm a = *localtime(&t);

关于c++ - 复制结构 tm,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43677130/

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