简体   繁体   English

tm struct time.h未规范化

[英]tm struct time.h not normalizing

I am adding values to the time (hours, minutes, seconds) members of my tm struct and they are not updating/normalizing even though I'm using mktime() Here is the code: 我正在将值添加到我的tm结构的时间(小时,分钟,秒)成员中,即使我使用mktime() ,它们也未更新/规范化,这是代码:

struct tm timeStruct;
char buffer[80];

timeStruct.tm_year = 2016 - 1900;
timeStruct.tm_mon = 3;
timeStruct.tm_mday = 32;
timeStruct.tm_hour = 23;
timeStruct.tm_min = 59;
timeStruct.tm_sec = 59;
timeStruct.tm_isdst = -1;

printf( "Date before adding interval: \n");
mktime(&timeStruct);
strftime(buffer, sizeof(buffer), "%c", &timeStruct);
printf(buffer);

printf( "\nthe year is %d\n", timeStruct.tm_year );
printf( "the month is %d\n", timeStruct.tm_mon );
printf( "the day is %d\n", timeStruct.tm_mday );
printf( "the hours are %d\n", timeStruct.tm_hour );
printf( "the minutes are %d\n", timeStruct.tm_min );
printf( "the seconds are %d\n", timeStruct.tm_sec );

/*
 * Add intervals to time
 */
timeStruct.tm_sec += 2;
timeStruct.tm_min += 2;
timeStruct.tm_hour += 5;

printf( "Date after adding interval: \n");
strftime(buffer, sizeof(buffer), "%c", &timeStruct);
printf(buffer);

printf( "\nthe year is %d\n", timeStruct.tm_year );
printf( "the month is %d\n", timeStruct.tm_mon );
printf( "the day is %d\n", timeStruct.tm_mday );
printf( "the hours are %d\n", timeStruct.tm_hour );
printf( "the minutes are %d\n", timeStruct.tm_min );
printf( "the seconds are %d\n", timeStruct.tm_sec );

Console Output: 1 控制台输出: 1

This is a print out of the console output: 这是控制台输出的打印输出:

Date before adding interval: 
Mon May  2 23:59:59 2016
the year is 116
the month is 4
the day is 2
the hours are 23
the minutes are 59
the seconds are 59
Date after adding interval: 
Mon May  2 28:61:61 2016
the year is 116
the month is 4
the day is 2
the hours are 28
the minutes are 61
the seconds are 61

I am using Eclipse, compiling with Cygwin, on a Windows 7 machine. 我正在Windows 7机器上使用Eclipse和Cygwin进行编译。

In your code, mktime() is called only before adding intervals. 在您的代码中,仅在添加间隔之前调用mktime() You need to call it after adding intervals (so that it can normalize the updated timeStruct ): 您需要在添加间隔之后调用它(以便它可以标准化更新的timeStruct ):

printf( "Date after adding interval: \n");
mktime(&timeStruct);    // <--- here
strftime(buffer, sizeof(buffer), "%c", &timeStruct);

Output: 输出:

Tue May  3 05:02:01 2016
the year is 116
the month is 4
the day is 3
the hours are 5
the minutes are 2
the seconds are 1

here is the corrected code: 这是更正的代码:

#include <stdio.h>
#include <time.h>

struct tm timeStruct;
char buffer[80];

int main( void )
{
    timeStruct.tm_year = 2016 - 1900;
    timeStruct.tm_mon = 3;
    timeStruct.tm_mday = 32;
    timeStruct.tm_hour = 23;
    timeStruct.tm_min = 59;
    timeStruct.tm_sec = 59;
    timeStruct.tm_isdst = -1;

    printf( "Date before adding interval: \n");
    if( (time_t)-1 == mktime(&timeStruct) )
    {
        perror( "first call to mktime failed due to: ");
    }

    if( 0 == strftime(buffer, sizeof(buffer), "%c", &timeStruct) )
    {
        perror( "first call to strftime failed due to: ");
    }

    printf( "\n\n%s\n", buffer);

    printf( "\nthe year is %d\n", timeStruct.tm_year );
    printf( "the month is %d\n", timeStruct.tm_mon );
    printf( "the day is %d\n", timeStruct.tm_mday );
    printf( "the hours are %d\n", timeStruct.tm_hour );
    printf( "the minutes are %d\n", timeStruct.tm_min );
    printf( "the seconds are %d\n", timeStruct.tm_sec );

    /*
     * Add intervals to time
     */
    timeStruct.tm_sec += 2;
    timeStruct.tm_min += 2;
    timeStruct.tm_hour += 5;
    timeStruct.tm_year = 2016 - 1900;
    timeStruct.tm_mon = 3;
    timeStruct.tm_mday = 32;
    timeStruct.tm_hour = 23;
    timeStruct.tm_min = 59;
    timeStruct.tm_sec = 59;
    timeStruct.tm_isdst = -1;

    printf( "Date after adding first interval: \n");
    if( (time_t)-1 == mktime(&timeStruct) )
    {
        perror( "second call to mktime failed due to: ");
    }

    if( 0 == strftime(buffer, sizeof(buffer), "%c", &timeStruct) )
    {
        perror( "second call to strftime failed due to: ");
    }

    printf("\n\n%s\n", buffer);

    printf( "\nthe year is %d\n", timeStruct.tm_year );
    printf( "the month is %d\n", timeStruct.tm_mon );
    printf( "the day is %d\n", timeStruct.tm_mday );
    printf( "the hours are %d\n", timeStruct.tm_hour );
    printf( "the minutes are %d\n", timeStruct.tm_min );
    printf( "the seconds are %d\n", timeStruct.tm_sec );

    /*
     * Add intervals to time
     */
    timeStruct.tm_sec += 2;
    timeStruct.tm_min += 2;
    timeStruct.tm_hour += 5;

    printf( "Date after adding second interval: \n");
    if( (time_t)-1 == mktime(&timeStruct) )
    {
        perror( "third call to mktime failed due to: ");
    }

    if( 0 == strftime(buffer, sizeof(buffer), "%c", &timeStruct) )
    {
        perror( "third call to strftime failed due to: ");
    }

    printf("\n\n%s\n", buffer);

    printf( "\nthe year is %d\n", timeStruct.tm_year );
    printf( "the month is %d\n", timeStruct.tm_mon );
    printf( "the day is %d\n", timeStruct.tm_mday );
    printf( "the hours are %d\n", timeStruct.tm_hour );
    printf( "the minutes are %d\n", timeStruct.tm_min );
    printf( "the seconds are %d\n", timeStruct.tm_sec );
}

Here is the current/corrected code output: 这是当前/更正后的代码输出:

Date before adding interval: 


Mon May  2 23:59:59 2016

the year is 116
the month is 4
the day is 2
the hours are 23
the minutes are 59
the seconds are 59
Date after adding first interval: 


Mon May  2 23:59:59 2016

the year is 116
the month is 4
the day is 2
the hours are 23
the minutes are 59
the seconds are 59
Date after adding second interval: 


Tue May  3 05:02:01 2016

the year is 116
the month is 4
the day is 3
the hours are 5
the minutes are 2
the seconds are 1

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM