2017-02-16 39 views
0

欲計算兩個日期之間以秒的差異,但結果是0。差異兩個日期之間秒用C

下面是代碼:

time_t=time(NULL); 
struct tm * timeNow=localtime(); 
time_t start=mktime(&*timeNow); 
time_t end=mktime(&*recordFind->timeInserted); 

double seconds=difftime(start,end); 

recordFind->timeInserted是確定,因爲我印刷他的成員和確定, 但是當我打印秒是0.000000;

+3

'time_t的時間=(NULL);' - 缺少了什麼?另外:'&*'是毫無意義的。 –

+1

請檢查這裏的例子:http://www.cplusplus.com/reference/ctime/difftime/ –

回答

1

請參考下面

#include <stdio.h> 

struct TIME 
{ 
    int seconds; 
    int minutes; 
    int hours; 
}; 

void differenceBetweenTimePeriod(struct TIME t1, struct TIME t2, struct TIME *diff); 

int main() 
{  
    struct TIME startTime, stopTime, diff; 
    printf("Enter start time: \n"); 
    printf("Enter hours, minutes and seconds respectively: "); 
    scanf("%d %d %d", &startTime.hours, &startTime.minutes, &startTime.seconds); 

    printf("Enter stop time: \n"); 
    printf("Enter hours, minutes and seconds respectively: "); 
    scanf("%d %d %d", &stopTime.hours, &stopTime.minutes, &stopTime.seconds); 

    // Calculate the difference between the start and stop time period. 
    differenceBetweenTimePeriod(startTime, stopTime, &diff); 

    printf("\nTIME DIFFERENCE: %d:%d:%d - ", startTime.hours, startTime.minutes, startTime.seconds); 
    printf("%d:%d:%d ", stopTime.hours, stopTime.minutes, stopTime.seconds); 
    printf("= %d:%d:%d\n", diff.hours, diff.minutes, diff.seconds); 

    return 0; 
} 

void differenceBetweenTimePeriod(struct TIME start, struct TIME stop, struct TIME *diff) 
{ 
    if(stop.seconds > start.seconds){ 
     --start.minutes; 
     start.seconds += 60; 
    } 

    diff->seconds = start.seconds - stop.seconds; 
    if(stop.minutes > start.minutes){ 
     --start.hours; 
     start.minutes += 60; 
    } 

    diff->minutes = start.minutes - stop.minutes; 
    diff->hours = start.hours - stop.hours; 
} 

輸出

Enter start time: 
Enter hours, minutes and seconds respectively: 
12 
34 
55 
Enter stop time: 
Enter hours, minutes and seconds respectively: 
8 
12 
15 

TIME DIFFERENCE: 12:34:55 - 8:12:15 = 4:22:40 
+1

這不適用於不同日子採取的兩個日期:( –

5

你想

double seconds = difftime(end, start); 

,而不是

double seconds = difftime(start, end); 

,卻忘記對變量命名time_t=time(NULL);,更改爲類似:

time_t now; 
double seconds; 

time(&now); 
seconds = difftime(now, mktime(&recordFind->timeInserted));