C/C++语言函数学习(5)time.h
//http://blog.csdn.net/NoExcuse/article/details/1843270
Used by other time functions.
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
};
//获得日历时间
time_t time(time_t * timer);
//将日历时间转化为世界标准时间(即格林尼治时间)
struct tm * gmtime(const time_t *timer);
//转化为本地时间
struct tm * localtime(const time_t * timer);
//转换为日历时间
time_t mktime(struct tm * timeptr);
//转化为字符串,固定的时间格式
char * asctime(const struct tm * timeptr);
char * ctime(const time_t *timer);
//根据format指向字符串中格式命令把timeptr中保存的时间信息放在strDest指向的字符串中,
//最多向strDest中存放maxsize个字符。该函数返回向strDest指向的字符串中放置的字符数。
size_t strftime(
char *strDest,
size_t maxsize,
const char *format,
const struct tm *timeptr
);
格式列表如下:
%a 星期几的简写
%A 星期几的全称
%b 月分的简写
%B 月份的全称
%c 标准的日期的时间串
%C 年份的后两位数字
%d 十进制表示的每月的第几天
%D 月/天/年
%e 在两字符域中,十进制表示的每月的第几天
%F 年-月-日
%g 年份的后两位数字,使用基于周的年
%G 年分,使用基于周的年
%h 简写的月份名
%H 24小时制的小时
%I 12小时制的小时
%j 十进制表示的每年的第几天
%m 十进制表示的月份
%M 十时制表示的分钟数
%n 新行符
%p 本地的AM或PM的等价显示
%r 12小时的时间
%R 显示小时和分钟:hh:mm
%S 十进制的秒数
%t 水平制表符
%T 显示时分秒:hh:mm:ss
%u 每周的第几天,星期一为第一天 (值从0到6,星期一为0)
%U 第年的第几周,把星期日做为第一天(值从0到53)
%V 每年的第几周,使用基于周的年
%w 十进制表示的星期几(值从0到6,星期天为0)
%W 每年的第几周,把星期一做为第一天(值从0到53)
%x 标准的日期串
%X 标准的时间串
%y 不带世纪的十进制年份(值从0到99)
%Y 带世纪部分的十制年份
%z,%Z 时区名称,如果不能得到时区名称则返回空字符。
%% 百分号
#include <time.h>#include <stdio.h>int main(int argc, char *argv[]){clock_t start,finish;long i = 1000000L;char str[100];struct tm *local;struct tm *gm;time_t seconds ;time(&seconds);//printf("%s",ctime(seconds));start = clock();while(i--);finish = clock();printf("%f\n",(double)(finish - start)/CLOCKS_PER_SEC);printf("%d\n",seconds);local = localtime(&seconds);gm = gmtime(&seconds);printf("%d\n",local->tm_hour);printf("%d\n",gm->tm_hour);printf(asctime(local));printf(ctime(&seconds));strftime(str,100,"It is %R %p\n",local);printf(str);return 0;}