C 参考手册

位置:首页 > C 参考手册 >日期和时间工具 > ctime, ctime_r, ctime_s

定义于头文件 <time.h>
char*   ctime  ( const time_t* timer );
(1)
char*   ctime_r( const time_t* timer, char* buf );
(2) (C2x 起)
errno_t ctime_s( char *buf, rsize_t bufsz, const time_t* timer );
(3) (C11 起)
1) 转换从纪元起的给定时间为历法本地时间,再转换为文本表示,如同通过调用 asctime(localtime(timer))asctime(localtime_r(timer, &(struct tm){0})) (C2x 起)
2)(1) ,除了函数等价于 asctime_r(localtime_r(timer, &(struct tm){0}), buf)
3)(1) ,除了函数等价于 asctime_s(buf, bufsz, localtime_s(timer, &(struct tm){0})) 。并在运行时检测下列错误并调用当前安装的制约处理函数:
  • buftimer 为空指针
  • bufsz 小于 26 或大于 RSIZE_MAX
同所有边界检查函数, ctime_s 仅若实现定义 __STDC_LIB_EXT1__ 且用户在包含 time.h 前定义 __STDC_WANT_LIB_EXT1__ 为整数常量 1 才保证可用。

结果字符串拥有下列格式:

Www Mmm dd hh:mm:ss yyyy\n
  • Www ——星期( MonTueWedThuFriSatSun 之一)。
  • Mmm ——月份( JanFebMarAprMayJunJulAugSepOctNovDec 之一)。
  • dd ——月之日
  • hh ——时
  • mm ——分
  • ss ——秒
  • yyyy ——年

函数不支持本地化。

参数

timer - 指向指定待打印时间的 time_t 对象的指针
buf - 指向大小至少为 bufsz 的 char 数组首元素的指针
bufsz - 输出的最大字节数,常为 buf 所指向的缓冲区的大小

返回值

1) 指向保有日期与时间的文本表示的静态空终止字符串的指针。该字符串可能在 asctimectime 之间共享,且可能在每次调用任何这些函数时被重写。
2) buf ,在返回后指向保有日期与时间的文本表示的空终止字符串。
2) 成功时为零(该情况下将日期与时间的字符串表示写到 buf 所指向的数组),或在失败时为非零(该情况下始终写入空终止字符到 buf[0] ,除非 buf 为空指针或 bufsz 为零或大于 RSIZE_MAX )。

注解

ctime 返回指向静态数据的指针且非线程安全。另外,它修改可能与 gmtimelocaltime 共享的静态 tm 对象。 POSIX 标记此函数为过时并推荐 strftime 代替。 C 标准亦推荐 strftime 代替 ctimectime_rctime_s ,因 strftime 更灵活且为本地环境相关。

ctimectime_r 的行为对于导致字符串长于 25 字符的 time_t 值(例如 10000 年)未定义。

示例

#define __STDC_WANT_LIB_EXT1__ 1
#include <time.h>
#include <stdio.h>
 
int main(void)
{
    time_t result = time(NULL);
    printf("%s", ctime(&result));
 
#ifdef __STDC_LIB_EXT1__
    char str[26];
    ctime_s(str,sizeof str,&result);
    printf("%s", str);
#endif
}

输出:

Tue May 26 21:51:03 2015
Tue May 26 21:51:03 2015

引用

  • C11 standard (ISO/IEC 9899:2011):
  • 7.27.3.2 The ctime function (p: 393)
  • K.3.8.2.2 The ctime_s function (p: 626)
  • C99 standard (ISO/IEC 9899:1999):
  • 7.23.3.2 The ctime function (p: 342)
  • C89/C90 standard (ISO/IEC 9899:1990):
  • 4.12.3.2 The ctime function

参阅

struct tm 对象转换成文本表示
(函数)
struct tm 对象转换成自定义文本表示
(函数)