- C 标准库
- C 库 - 首页
- C 库 - <assert.h>
- C 库 - <complex.h>
- C 库 - <ctype.h>
- C 库 - <errno.h>
- C 库 - <fenv.h>
- C 库 - <float.h>
- C 库 - <inttypes.h>
- C 库 - <iso646.h>
- C 库 - <limits.h>
- C 库 - <locale.h>
- C 库 - <math.h>
- C 库 - <setjmp.h>
- C 库 - <signal.h>
- C 库 - <stdalign.h>
- C 库 - <stdarg.h>
- C 库 - <stdbool.h>
- C 库 - <stddef.h>
- C 库 - <stdio.h>
- C 库 - <stdlib.h>
- C 库 - <string.h>
- C 库 - <tgmath.h>
- C 库 - <time.h>
- C 库 - <wctype.h>
- C 标准库资源
- C 库 - 快速指南
- C 库 - 有用资源
- C 库 - 讨论
C 库 - gmtime() 函数
C 库的 gmtime() 函数,其类型为 struct,使用 timer 指向的值填充一个结构体 (tm),其中包含表示对应时间的数值,以协调世界时 (UTC) 或格林威治标准时间 (GMT) 时区表示。这对于日志记录、时间戳和调度等操作非常有用。
语法
以下是 C 库 gmtime() 函数的语法:
struct tm *gmtime(const time_t *timer)
参数
此函数仅接受一个参数:
- timeptr − 这是一个指向 time_t 值的指针,表示日历时间。
返回值
此函数返回一个指向包含已填充时间信息的 tm 结构体的指针。
以下是 timeptr 结构体的列表:
struct tm { int tm_sec; /* seconds, range 0 to 59 */ int tm_min; /* minutes, range 0 to 59 */ int tm_hour; /* hours, range 0 to 23 */ int tm_mday; /* day of the month, range 1 to 31 */ int tm_mon; /* month, range 0 to 11 */ int tm_year; /* The number of years since 1900 */ int tm_wday; /* day of the week, range 0 to 6 */ int tm_yday; /* day in the year, range 0 to 365 */ int tm_isdst; /* daylight saving time */ };
示例 1
以下是一个基本的 C 库程序,用于演示 gmtime() 函数。
#include <stdio.h> #include <time.h> #define BST (+1) #define CCT (+8) int main () { time_t rawtime; struct tm *info; time(&rawtime); /* Get GMT time */ info = gmtime(&rawtime ); printf("Current world clock:\n"); printf("London : %2d:%02d\n", (info->tm_hour+BST)%24, info->tm_min); printf("China : %2d:%02d\n", (info->tm_hour+CCT)%24, info->tm_min); return(0); }
输出
以上代码产生以下结果:
Current world clock: London : 14:10 China : 21:10
示例 2
在这里,我们使用 gmtime() 获取当前本地时间,并打印不同国家/地区的本地时区。
#include <stdio.h> #include <time.h> #define CST (+8) #define IND (-5) int main() { time_t current_time; struct tm* ptime; time(¤t_time); ptime = gmtime(¤t_time); printf("Current time:\n"); printf("Beijing (China): %02d:%02d:%02d\n", (ptime->tm_hour + CST) % 24, ptime->tm_min, ptime->tm_sec); printf("Delhi (India): %02d:%02d:%02d\n", (ptime->tm_hour + IND) % 24, ptime->tm_min, ptime->tm_sec); return 0; }
输出
执行以上代码后,我们得到以下结果:
Current time: Beijing (China): 16:23:24 Delhi (India): 03:23:24
示例 3
gmtime() 函数演示了如何将当前日历时间转换为文本表示 (asctime_s())。
#define __STDC_WANT_LIB_EXT1__ 1 #include <stdio.h> #include <time.h> int main(void) { struct tm tm = *gmtime(&(time_t){time(NULL)}); printf("Current time (using asctime()): %s\n", asctime(&tm)); #ifdef __STDC_LIB_EXT1__ char str[50]; asctime_s(str, sizeof str, &tm); printf("Current time (using asctime_s()): %s\n", str); #endif return 0; }
输出
执行以上代码后,我们得到以下结果:
Current time (using asctime()): Tue May 14 08:33:26 2024
广告