以天数计算两个日期之间的差异?

时间:2014-08-14 09:45:42

标签: c date time

在比较两天时,我没有得到正确的日子。在这里,dd=14,mm=8,yy=2014

我得到699天而不是730天
time_t t1, t2;
struct tm my_target_date;

 my_target_date.tm_sec = 0;
 my_target_date.tm_min = 0;
 my_target_date.tm_hour = 0;
 my_target_date.tm_mday = 14;
 my_target_date.tm_mon = 8;
 my_target_date.tm_year = 112; /* Date today */
 t1 = mktime (&my_target_date);
 t2 = time (NULL);
 sprintf (sbuff2,"Number of days since target date : %ld\n", (t2 - t1) / 86400);

2 个答案:

答案 0 :(得分:6)

struct tm

int tm_mday; // day of the month — [1, 31]
int tm_mon; // months since January — [0, 11]

tm_mday1开始,但tm_mon0开始。因此,my_target_date.tm_mon = 8;实际上是九月,你离开一个月。

答案 1 :(得分:0)

struct tm结构是 -

struct tm {
           int tm_sec;         /* seconds */
           int tm_min;         /* minutes */
           int tm_hour;        /* hours */
           int tm_mday;        /* day of the month */
           int tm_mon;         /* month */
           int tm_year;        /* year */
           int tm_wday;        /* day of the week */
           int tm_yday;        /* day in the year */
           int tm_isdst;       /* daylight saving time */
       };

tm结构的成员是:

   tm_sec    The  number of seconds after the minute, normally in the range 0 to 59, but can be up
             to 60 to allow for leap seconds.

   tm_min    The number of minutes after the hour, in the range 0 to 59.

   tm_hour   The number of hours past midnight, in the range 0 to 23.

   tm_mday   The day of the month, in the range 1 to 31.

   tm_mon    The number of months since January, in the range 0 to 11.

   tm_year   The number of years since 1900.

   tm_wday   The number of days since Sunday, in the range 0 to 6.

   tm_yday   The number of days since January 1, in the range 0 to 365.

   tm_isdst  A flag that indicates  whether  daylight  saving  time  is  in  effect  at  the  time
             described.  The value is positive if daylight saving time is in effect, zero if it is
             not, and negative if the information is not available.

如果您将输入设为dd=14,mm=8,yy=2014,则表示2014年9月14日,因为从tm_mon开始的0月。所以它会计算September 14th 2014的天数。所以你错过了31天。

将您的输入设为dd=14,mm=7,yy=2014

相关问题