时间相关库<ctime>解析

原创作品,转载请注明来源:http://www.cnblogs.com/shrimp-can/p/5649487.html 

一、定义的类型

1.clock_t:时钟类型

2.size_t:unsigned int

3.time_t:时间类型

4.struct tm:结构,成员如下:

MemberTypeMeaningRange
tm_secintseconds after the minute0-60*
tm_minintminutes after the hour0-59
tm_hourinthours since midnight0-23
tm_mdayintday of the month1-31
tm_monintmonths since January0-11
tm_yearintyears since 1900 
tm_wdayintdays since Sunday0-6
tm_ydayintdays since January 10-365
tm_isdstintDaylight Saving Time flag 

二、定义的宏

1.NULL:空指针

2.CLOCKS_PER_SEC:每秒的时钟周期

 

三、时间操作函数

1.clock:clock_t clock (void);

返回当前时钟周期,转换为s除以CLOCKS_PER_SEC

2.difftime:double difftime (time_t end, time_t beginning);

计算geginning和end之间的时间单位秒

3.mktime:time_t mktime (struct tm * timeptr);

返回timeptr指向的时间,timeptr也会更新其他的。

  time_t rawtime;
  struct tm * timeinfo;
  int year, month ,day;
  const char * weekday[] = { "Sunday", "Monday",
                             "Tuesday", "Wednesday",
                             "Thursday", "Friday", "Saturday"};
  printf ("Enter year: "); fflush(stdout); scanf ("%d",&year);
  printf ("Enter month: "); fflush(stdout); scanf ("%d",&month);
  printf ("Enter day: "); fflush(stdout); scanf ("%d",&day);
  time ( &rawtime );
  timeinfo = localtime ( &rawtime );
  timeinfo->tm_year = year - 1900;
  timeinfo->tm_mon = month - 1;
  timeinfo->tm_mday = day;
  mktime ( timeinfo );
  printf ("That day is a %s.\n", weekday[timeinfo->tm_wday]);
输出为:
Enter year: 2000
Enter month: 5
Enter day: 20
That day is a Saturday.

4.time:time_t time (time_t* timer);

得到当前的日历时间,存储在timer中,如果获取失败返回空指针,成功返回当前日历时间

 

四、时间转化相关函数

1.asctime:char* asctime (const struct tm * timeptr);

将tm类型的时间转化为字符串的形式,返回的字符串如Www Mmm dd hh:mm:ss yyyy

2.ctime:char* ctime (const time_t * timer);

将time_t类型的时间转化为字符串的形式,返回的字符串如:Www Mmm dd hh:mm:ss yyyy

3.gmtime:struct tm * gmtime (const time_t * timer);

将time_t的时间类型转化为UTC时间,相应的时间存储在结构tm中

4.localtime:struct tm * localtime (const time_t * timer);

使用timer中的时间填充localtime

5.strftime:size_t strftime (char* ptr, size_t maxsize, const char* format, const struct tm* timeptr );

将结构tm描述的时间按format格式拷贝到字符串ptr中,最大maxsize字符。formate格式如下:

  time_t rawtime;
  struct tm * timeinfo;
  char buffer [80];
  time (&rawtime);
  timeinfo = localtime (&rawtime);
  strftime (buffer,80,"Now it's %I:%M%p.",timeinfo);
  puts (buffer);

 输出为:

Now it's 03:21PM.

 

specifierReplaced byExample
%aAbbreviated weekday name *Thu
%AFull weekday name *Thursday
%bAbbreviated month name *Aug
%BFull month name *August
%cDate and time representation *Thu Aug 23 14:55:02 2001
%CYear divided by 100 and truncated to integer (00-99)20
%dDay of the month, zero-padded (01-31)23
%DShort MM/DD/YY date, equivalent to %m/%d/%y08/23/01
%eDay of the month, space-padded ( 1-31)23
%FShort YYYY-MM-DD date, equivalent to %Y-%m-%d2001-08-23
%gWeek-based year, last two digits (00-99)01
%GWeek-based year2001
%hAbbreviated month name * (same as %b)Aug
%HHour in 24h format (00-23)14
%IHour in 12h format (01-12)02
%jDay of the year (001-366)235
%mMonth as a decimal number (01-12)08
%MMinute (00-59)55
%nNew-line character ('\n') 
%pAM or PM designationPM
%r12-hour clock time *02:55:02 pm
%R24-hour HH:MM time, equivalent to %H:%M14:55
%SSecond (00-61)02
%tHorizontal-tab character ('\t') 
%TISO 8601 time format (HH:MM:SS), equivalent to %H:%M:%S14:55:02
%uISO 8601 weekday as number with Monday as 1 (1-7)4
%UWeek number with the first Sunday as the first day of week one (00-53)33
%VISO 8601 week number (00-53)34
%wWeekday as a decimal number with Sunday as 0 (0-6)4
%WWeek number with the first Monday as the first day of week one (00-53)34
%xDate representation *08/23/01
%XTime representation *14:55:02
%yYear, last two digits (00-99)01
%YYear2001
%zISO 8601 offset from UTC in timezone (1 minute=1, 1 hour=100)
If timezone cannot be determined, no characters
+100
%ZTimezone name or abbreviation *
If timezone cannot be determined, no characters
CDT
%%% sign%

参考:http://www.cplusplus.com/reference/ctime/

 

转载于:https://www.cnblogs.com/shrimp-can/p/5649487.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值