tm struct time.h not normalizing
我正在向我的
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
struct tm timeStruct; char buffer[80]; timeStruct.tm_year = 2016 – 1900; printf("Date before adding interval: / printf("/ /* printf("Date after adding interval: / printf("/ |
控制台输出:1
这是控制台输出的打印输出:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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 |
我在 Windows 7 机器上使用 Eclipse,用 Cygwin 编译。
在您的代码中,仅在添加间隔之前调用
1
2 3 4 |
输出:
1
2 3 4 5 6 7 |
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 |
这里是更正后的代码:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
#include <stdio.h> #include <time.h> struct tm timeStruct; int main( void ) printf("Date before adding interval: / if( 0 == strftime(buffer, sizeof(buffer),"%c", &timeStruct) ) printf("/ printf("/ /* printf("Date after adding first interval: / if( 0 == strftime(buffer, sizeof(buffer),"%c", &timeStruct) ) printf("/ printf("/ /* printf("Date after adding second interval: / if( 0 == strftime(buffer, sizeof(buffer),"%c", &timeStruct) ) printf("/ printf("/ |
这是当前/更正后的代码输出:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
Date before adding interval:
Mon May 2 23:59:59 2016 the year is 116 Mon May 2 23:59:59 2016 the year is 116 Tue May 3 05:02:01 2016 the year is 116 |
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/269281.html