C語言中tm結構體


struct tm

{

int tm_sec; /* Seconds. [0-60] (1 leap second) */

int tm_min; /* Minutes. [0-59] */

int tm_hour; /* Hours. [0-23] */

int tm_mday; /* Day. [1-31] */

int tm_mon; /* Month. [0-11] */

int tm_year; /* Year - 1900. */

int tm_wday; /* Day of week. [0-6] */

int tm_yday; /* Days in year.[0-365] */

int tm_isdst; /* DST. [-1/0/1]*/

 

#ifdef __USE_BSD

long int tm_gmtoff; /* Seconds east of UTC. */

__const char *tm_zone; /* Timezone abbreviation. */

#else

long int __tm_gmtoff; /* Seconds east of UTC. */

__const char *__tm_zone; /* Timezone abbreviation. */

#endif

};

 

在C語言中

有time_t tm timeval等幾種類型的時間

1.time_t為typedef __int64 __time64_t;

2.struct timeval

{

uint tv_sec;

uint tv.usec;

}

 

 

 

具體操作函數

包含文件:<sys/time.h> <time.h>

 

tm *gmtime(time_t * t);

time_t time(time_t *t);

char *asctime(const struct tm *timeptr);

char *ctime(const time_t *timer);

把tm指針轉換為time_t

time_t mktime(struct tm *timeptr);

localtime和gmtime的區別在於gmtime將時間轉換為國際標准格式,也就是相對於1970 00:00:00開始的時間戳

而localtime是相對於本地的時區的格式。

#include<stdio.h>

#include<time.h>

#include<sys/time.h>

#include<signal.h>

#include<pthread.h>

void quit_t()

{

printf("eixt now");

exit(-1);

}

int main()

{

/* struct timeval vt;

gettimeofday(&vt , NULL);

while(1)

{

printf("%u:%u\n",vt.tv_sec,vt.tv_usec);

sleep(2);

signal(SIGINT, quit_t);

}

*/

 

struct tm *tt;

time_t t = time(NULL);

tt = gmtime(&t);

//char *s = asctime(tt);

printf("%d-%d-%d %d:%d:%d",tt->tm_year+1900,tt->tm_mon+1,tt->tm_mday,tt->tm_hour,tt->tm_min,tt->tm_sec);

return 0;

}

 

#ifndef _TM_DEFINED

struct tm {

int tm_sec; /* 秒 - 取值區間為[0,59] */

int tm_min; /* 分 - 取值區間為[0,59] */

int tm_hour; /* 時 - 取值區間為[0,23] */

int tm_mday; /* 一個月中的日期 - 取值區間為[1,31] */

int tm_mon; /* 月份(從一月開始,0代表一月)- 取值區間為[0,11] */

int tm_year; /* 年份,其值等於實際年份減去1900 */

int tm_wday; /* 星期–取值區間為[0,6],其中0代表星期天,1代表星期一,以此類推 */

int tm_yday; /* 從每年的1月1日開始的天數 – 取值區間為[0,365],其中0代表1月1日,1代表1月2日,以此類推 */

int tm_isdst; /*夏令時標識符,實行夏令時的時候,tm_isdst為正。不實行夏令時的進候,tm_isdst為0;不了解情況時,tm_isdst()為負。*/

};

#define _TM_DEFINED /* 避免重復定義 tm */

#

 

endif

ANSI C標准稱使用tm結構的這種時間表示為分解時間(broken-down time)。

包含文件:<sys/time.h> <time.h>

把tm指針轉換為time_t: time_t mktime(struct tm *timeptr);


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM