gpt4 book ai didi

c++ - mktime 每次返回相同的值

转载 作者:行者123 更新时间:2023-11-30 05:24:36 25 4
gpt4 key购买 nike

我正在尝试将以 HHMMSS.SS,DD,MM,YYYY 格式给出的时间转换为 unix 时间。问题是,然后调用 mktime,返回相同的 time_t。

ConvertTime(std::string input)
{
std::vector<std::string> tokens;

//splits input into tokens
Tokenize(input, tokens);

int hrs = atoi( tokens.at(0).substr(0,2).c_str() );
int mins = atoi( tokens.at(0).substr(2,2).c_str() );
int secs = atoi( tokens.at(0).substr(4,2).c_str() );
int day = atoi( tokens.at(1).c_str() );
int month = atoi( tokens.at(2).c_str() );
int year = atoi( tokens.at(3).c_str() );

struct tm tm = {0};
time_t msgTime = 0;

tm.tm_sec = secs;
tm.tm_min = mins;
tm.tm_hour = hrs;
tm.tm_mday = day;
tm.tm_mon = month-1;
tm.tm_year = year-1900;
tm.tm_isdst = -1;
msgTime = mktime(&tm);
printf("time: %f\n",msgTime);

}

Input ex:
154831.90,22,07,2016
154832.10,22,07,2016
154832.30,22,07,2016
154832.50,22,07,2016
154832.70,22,07,2016
154832.90,22,07,2016
154833.10,22,07,2016

Output ex:
1469202560.00
1469202560.00
1469202560.00
1469202560.00
1469202560.00
1469202560.00
1469202560.00

我觉得我没有初始化某些东西,或者值没有被改变,但 tm 结构不应该在 ConvertTime 调用之间延续,所以我不确定问题是什么。

最佳答案

这里的问题在于尝试将 time_t (msgTime) 值用作 double 值,而不进行强制转换。

解决方案是像这样简单地将 msgTime 转换为 double:

printf("time %f\n",(double)msgTime);

这使得函数:

ConvertTime(std::string input)
{
std::vector<std::string> tokens;

//splits input into tokens
Tokenize(input, tokens);

int hrs = atoi( tokens.at(0).substr(0,2).c_str() );
int mins = atoi( tokens.at(0).substr(2,2).c_str() );
int secs = atoi( tokens.at(0).substr(4,2).c_str() );
int day = atoi( tokens.at(1).c_str() );
int month = atoi( tokens.at(2).c_str() );
int year = atoi( tokens.at(3).c_str() );

struct tm tm = {0};
time_t msgTime = 0;

tm.tm_sec = secs;
tm.tm_min = mins;
tm.tm_hour = hrs;
tm.tm_mday = day;
tm.tm_mon = month-1;
tm.tm_year = year-1900;
tm.tm_isdst = -1;
msgTime = mktime(&tm);
printf("time: %f\n",(double)msgTime);

}

Input ex:
154831.90,22,07,2016
154832.10,22,07,2016
154832.30,22,07,2016
154832.50,22,07,2016
154832.70,22,07,2016
154832.90,22,07,2016
154833.10,22,07,2016

Output ex:
1469202511.00
1469202512.00
1469202512.00
1469202512.00
1469202512.00
1469202512.00
1469202513.00

关于c++ - mktime 每次返回相同的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38622528/

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