C++ 的 get_time 和 put_time 函数

来源:互联网 发布:浙江大学网络缴费平台 编辑:程序博客网 时间:2024/05/19 12:28
为了快速的时间格式转换. C++ 引进了 get_time 和 put_time 函数

#include <iostream>
#include<iomanip>
#include<ctime>
int main()
{
std::time_t t = std::time(NULL);
std::tm tm = *std::localtime(&t);
std::cout.imbue(std::locale("CHS"));
std::cout <<std::put_time(&tm,"%Y-%m-%d %H:%M:%S") <<'\n';
// std::cout.imbue(std::locale("ja_JP.utf8"));
// std::cout << "ja_JP: " << std::put_time(&tm, "%c %Z") << '\n';
system("pause");
}

下面是时间函数格式串的一些特定转义参数:
注::VS2010 不支持C++11的格式

E前缀的表示在当地语言环境中的表示...
O前缀的表示使用当地语言环境的计数文字

常用

时:分:秒 %H:%M:%S <==> %T (C++11标准)
当地时间标准 %X
十二小时制 %I (%p <==> a.m|p.m 或者当地写法)

年-月-日 %Y:%m:%d <==> %F (C++11标准)
当期日期标准 %x
一年的第几天 %j
第几周 %U (00-53) 周日为第一天
%W (00-53) 周一为第一天
%V (01-53) 周一为第一天 (C++11标准)
周一为星期的第一天
每年的第一星期为包含1月4号的那个星期.
或者包含第一个星期四那个星期
星期几 %w (0-6) %u(1-7)(C++11标准)
星期几 %a 单词简写 %A 单词全称 (当地写法)

Conversion
specifierExplanationUsed fields%writes literal %. The full conversion specification must be %%n(C++11)writes newline character t(C++11)writes horizontal tab character YearYwrites year as a 4 digit decimal number XXXX 4位数年份tm_yearEY(C++11)writes year in the alternative representation, e.g.平成23年 (year Heisei 23) instead of 2011年 (year 2011) in ja_JP localetm_yearywrites last 2 digits of year as a decimal number ( XX range [00,99]) 两位数年份tm_yearOy(C++11)writes last 2 digits of year using the alternative numeric system, e.g. 十一 instead of 11 in ja_JP localetm_yearEy(C++11)writes year as offset from locale's alternative calendar period %EC (locale-dependent)tm_yearC(C++11)writes first 2 digits of year as a decimal number (range [00,99]) 公历年的前两位数tm_yearEC(C++11)writes name of the base year (period) in the locale's alternative representation, e.g. 平成 (Heisei era) in ja_JPtm_yearG(C++11)writes ISO 8601 week-based year, i.e. the year that contains the specified week.

In IS0 8601 weeks begin with Monday and the first week of the year must satisfy the following requirements:

  • Includes January 4
  • Includes first Thursday of the year
tm_year,tm_wday,tm_ydayg(C++11)writes last 2 digits of ISO 8601 week-based year, i.e. the year that contains the specified week (range[00,99]).

In IS0 8601 weeks begin with Monday and the first week of the year must satisfy the following requirements:

  • Includes January 4
  • Includes first Thursday of the year
tm_year,tm_wday,tm_ydayMonthbwrites abbreviated month name, e.g. Oct (locale dependent) 月份英文简称tm_monh(C++11)synonym of b 代名词?tm_monBwrites full month name, e.g. October (locale dependent) 月份英文全称tm_monmwrites month as a decimal number (range [01,12]) 月份两位数字tm_monOm(C++11)writes month using the alternative numeric system, e.g. 十二 instead of 12 in ja_JP locale月份当地文字tm_monWeekUwrites week of the year as a decimal number (Sunday is the first day of the week) (range[00,53])第几周(周日为第一天)tm_year,tm_wday,tm_ydayOU(C++11)writes week of the year, as by %U, using the alternative numeric system, e.g. 五十二 instead of 52 in ja_JP localetm_year,tm_wday,tm_ydayWwrites week of the year as a decimal number (Monday is the first day of the week) (range[00,53])第几周(周一为第一天)tm_year,tm_wday,tm_ydayOW(C++11)writes week of the year, as by %W, using the alternative numeric system, e.g. 五十二 instead of 52 in ja_JP localetm_year,tm_wday,tm_ydayV(C++11)writes ISO 8601 week of the year (range [01,53]).

In IS0 8601 weeks begin with Monday and the first week of the year must satisfy the following requirements:

  • Includes January 4
  • Includes first Thursday of the year
tm_year,tm_wday,tm_ydayOV(C++11)writes week of the year, as by %V, using the alternative numeric system, e.g. 五十二 instead of 52 in ja_JP localetm_year,tm_wday,tm_ydayDay of the year/monthjwrites day of the year as a decimal number (range [001,366]) 一年的第几天(XXX)tm_ydaydwrites day of the month as a decimal number (range [01,31]) 一月的第几天(XX)tm_mdayOd(C++11)writes zero-based day of the month using the alternative numeric system, e.g 二十七 instead of 23 in ja_JP locale

Single character is preceded by a space.

tm_mdaye(C++11)writes day of the month as a decimal number (range [1,31]).

Single digit is preceded by a space.一月的第几天(X|XX)

tm_mdayOe(C++11)writes one-based day of the month using the alternative numeric system, e.g. 二十七 instead of 27 in ja_JP locale

Single character is preceded by a space.

tm_mdayDay of the weekawrites abbreviated weekday name, e.g. Fri (locale dependent) 星期几的简写tm_wdayAwrites full weekday name, e.g. Friday (locale dependent) 星期几的全称tm_wdaywwrites weekday as a decimal number, where Sunday is 0 (range [0-6]) 星期几数字表示(0-6)tm_wdayOw(C++11)writes weekday, where Sunday is 0, using the alternative numeric system, e.g. 二 instead of 2 in ja_JP localetm_wdayu(C++11)writes weekday as a decimal number, where Monday is 1 (ISO 8601 format) (range [1-7]) 星期几数字表示(1-7)tm_wdayOu(C++11)writes weekday, where Monday is 1, using the alternative numeric system, e.g. 二 instead of 2 in ja_JP localetm_wdayHour, minute, secondHwrites hour as a decimal number, 24 hour clock (range [00-23]) 24进制小时(XX)tm_hourOH(C++11)writes hour from 24-hour clock using the alternative numeric system, e.g. 十八 instead of 18 in ja_JP localetm_hourIwrites hour as a decimal number, 12 hour clock (range [01,12]) 12进制小时(XX)tm_hourOI(C++11)writes hour from 12-hour clock using the alternative numeric system, e.g. 六 instead of 06 in ja_JP localetm_hourMwrites minute as a decimal number (range [00,59]) 分钟(XX)tm_minOM(C++11)writes minute using the alternative numeric system, e.g. 二十五 instead of 25 in ja_JP localetm_minSwrites second as a decimal number (range [00,60]) 秒数(XX)- -|有60秒耶tm_secOS(C++11)writes second using the alternative numeric system, e.g. 二十四 instead of 24 in ja_JP localetm_secOthercwrites standard date and time string, e.g. Sun Oct 17 04:41:13 2010(locale dependent) 基本日期格式allEc(C++11)writes alternative date and time string, e.g. using 平成23年 (year Heisei 23) instead of 2011年 (year 2011) in ja_JP localeallxwrites localized date representation (locale dependent)allEx(C++11)writes alternative date representation, e.g. using 平成23年 (year Heisei 23) instead of 2011年 (year 2011) in ja_JP localeallXwrites localized time representation (locale dependent)allEX(C++11)writes alternative time representation (locale dependent)allD(C++11)equivalent to "%m/%d/%y" tm_mon,tm_mday,tm_yearF(C++11)equivalent to "%Y-%m-%d" (the ISO 8601 date format)tm_mon,tm_mday,tm_yearr(C++11)writes localized 12-hour clock time (locale dependent)tm_hour,tm_min,tm_secR(C++11)equivalent to "%H:%M"tm_hour,tm_minT(C++11)equivalent to "%H:%M:%S" (the ISO 8601 time format)tm_hour,tm_min,tm_secpwrites localized a.m. or p.m. (locale dependent)tm_hourz(C++11)writes offset from UTC in the ISO 8601 format (e.g. -0430), or no characters if the time zone information is not availabletm_isdstZwrites time zone name or abbreviation, or no characters if the time zone information is not available (locale dependent)tm_isdst


以下 为 std::get_time 一些转义参数
Conversion
specifierExplanationWrites to fields%matches a literal %. The full conversion specification must be %%.(none)tmatches any whitespace.(none)nmatches any whitespace.(none)YearYparses full year as a 4 digit decimal number, leading zeroes permitted but not requiredtm_yearEYparses year in the alternative representation, e.g.平成23年 (year Heisei 23) which writes 2011 to tm_year in ja_JP localetm_yearyparses last 2 digits of year as a decimal number. Range [69,99] results in values 1969 to 1999, range [00,68] results in 2000-2068tm_yearOyparses last 2 digits of year using the alternative numeric system, e.g. 十一 is parsed as 11 in ja_JP localetm_yearEyparses year as offset from locale's alternative calendar period %ECtm_yearCparses the first 2 digits of year as a decimal number (range [00,99])tm_yearECparses the name of the base year (period) in the locale's alternative representation, e.g. 平成 (Heisei era) in ja_JPtm_yearMonthbparses the month name, either full or abbreviated, e.g. Octtm_monhsynonym of btm_monBsynonym of btm_monmparses the month as a decimal number (range [01,12]), leading zeroes permitted but not requiredtm_monOmparses the month using the alternative numeric system, e.g. 十二 parses as 12 in ja_JP localetm_monWeekUparses the week of the year as a decimal number (Sunday is the first day of the week) (range[00,53]), leading zeroes permitted but not requiredtm_year,tm_wday,tm_ydayOUparses the week of the year, as by %U, using the alternative numeric system, e.g. 五十二 parses as 52 in ja_JP localetm_year,tm_wday,tm_ydayWparses the week of the year as a decimal number (Monday is the first day of the week) (range[00,53]), leading zeroes permitted but not requiredtm_year,tm_wday,tm_ydayOWparses the week of the year, as by %W, using the alternative numeric system, e.g. 五十二 parses as 52 in ja_JP localetm_year,tm_wday,tm_ydayDay of the year/monthjparses day of the year as a decimal number (range [001,366]), leading zeroes permitted but not requiredtm_ydaydparses the day of the month as a decimal number (range [01,31]), leading zeroes permitted but not requiredtm_mdayOdparses the day of the month using the alternative numeric system, e.g 二十七 parses as 23 in ja_JP locale, leading zeroes permitted but not requiredtm_mdayesynonym of dtm_mdayOesynonym of Odtm_mdayDay of the weekaparses the name of the day of the week, either full or abbreviated, e.g. Fritm_wdayAsynonym of atm_wdaywparses weekday as a decimal number, where Sunday is 0 (range [0-6])tm_wdayOwparses weekday as a decimal number, where Sunday is 0, using the alternative numeric system, e.g. 二 parses as 2 in ja_JP localetm_wdayHour, minute, secondHparses the hour as a decimal number, 24 hour clock (range [00-23]), leading zeroes permitted but not requiredtm_hourOHparses hour from 24-hour clock using the alternative numeric system, e.g. 十八 parses as 18 in ja_JP localetm_hourIparses hour as a decimal number, 12 hour clock (range [01,12]), leading zeroes permitted but not requiredtm_hourOIparses hour from 12-hour clock using the alternative numeric system, e.g. 六 reads as 06 in ja_JP localetm_hourMparses minute as a decimal number (range [00,59]), leading zeroes permitted but not requiredtm_minOMparses minute using the alternative numeric system, e.g. 二十五 parses as 25 in ja_JP localetm_minSparses second as a decimal number (range [00,60]), leading zeroes permitted but not requiredtm_secOSparses second using the alternative numeric system, e.g. 二十四 parses as 24 in ja_JP localetm_secOthercparses the locale's standard date and time string format, e.g. Sun Oct 17 04:41:13 2010 (locale dependent)allEcparses the locale's alternative date and time string format, e.g. expecting 平成23年 (year Heisei 23) instead of 2011年 (year 2011) in ja_JP localeallxparses the locale's standard date representationallExparses the locale's alternative date representation, e.g. expecting 平成23年 (year Heisei 23) instead of 2011年 (year 2011) in ja_JP localeallXparses the locale's standard time representationallEXparses the locale's alternative time representationallDequivalent to "%m / %d / %y "tm_mon,tm_mday,tm_yearrparses locale's standard 12-hour clock time (in POSIX, "%I : %M : %S %p")tm_hour,tm_min,tm_secRequivalent to "%H : %M"tm_hour,tm_minTequivalent to "%H : %M : %S"tm_hour,tm_min,tm_secpparses the locale's equivalent of a.m. or p.m.tm_hour