我想從time_t值中提取小時,分鐘和秒數作爲表示自epoch以來秒數的整數值。如何從time_t中提取小時數?
小時數值不正確。爲什麼?
#include <stdio.h>
#include <time.h>
#include <unistd.h>
int main()
{
char buf[64];
while (1) {
time_t t = time(NULL);
struct tm *tmp = gmtime(&t);
int h = (t/360) % 24; /* ### My problem. */
int m = (t/60) % 60;
int s = t % 60;
printf("%02d:%02d:%02d\n", h, m, s);
/* For reference, extracts the correct values. */
strftime(buf, sizeof(buf), "%H:%M:%S\n", tmp);
puts(buf);
sleep(1);
}
}
輸出(小時應該是10)
06:15:35
10:15:35
06:15:36
10:15:36
06:15:37
10:15:37
「int h =(t/3600)%24; ...」使_assumption_ the time_t是整數秒。雖然這很常見,但它並沒有被C定義爲使用'gmtime()/ localtime()'或'difftime()'作爲可移植代碼。 – chux