当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C语言 asctime用法及代码示例


C语言time头文件(time.h)中asctime函数的用法及代码示例。

用法:

char* asctime (const struct tm * timeptr);
将tm结构转换为字符串
解释内容tm指向的结构时间点作为日历时间并将其转换为包含相应日期和时间的人类可读版本的C-string。

返回的字符串具有以下格式:

Www Mmm dd hh:mm:ss yyyy

在哪里Www是工作日Mmm一个月(以字母为单位),dd一个月中的某天,hh:mm:ss时间,和yyyy那一年。

字符串后跟一个new-line字符('\n'),并以null-character终止。

它的定义行为等同于:
/* asctime example */
#include <stdio.h>      /* printf */
#include <time.h>       /* time_t, struct tm, time, localtime, asctime */

int main ()
{
  time_t rawtime;
  struct tm * timeinfo;

  time ( &rawtime );
  timeinfo = localtime ( &rawtime );
  printf ( "The current date/time is: %s", asctime (timeinfo) );

  return 0;
}


有关自定义日期格式的替代方法,请参见strftime

参数

timeptr
指向一个指针tm包含日历时间的结构,该时间细分为各个部分(请参见struct tm)。

返回值

C-string包含人类可读格式的日期和时间信息。

返回的值指向一个内部数组,该数组的有效性或值可通过随后的任何调用来更改asctime或者ctime

示例

/* asctime example */
#include <stdio.h>      /* printf */
#include <time.h>       /* time_t, struct tm, time, localtime, asctime */

int main ()
{
  time_t rawtime;
  struct tm * timeinfo;

  time ( &rawtime );
  timeinfo = localtime ( &rawtime );
  printf ( "The current date/time is: %s", asctime (timeinfo) );

  return 0;
}


输出:

The current date/time is: Wed Feb 13 15:46:11 2013



相关用法


注:本文由纯净天空筛选整理自C标准库大神的英文原创作品 C asctime function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。