std::time_base

来自cppreference.com

 
 
本地化库
语言环境方面
Original:
Locales and facets
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
locale
字符分类
Original:
Character classification
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
转换
Original:
Conversions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
wstring_convert(C++11)
wbuffer_convert(C++11)
小面类的基类
Original:
Facet category base classes
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
time_base
money_base
小面类
Original:
Facet categories
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
特定于语言环境的方面
Original:
Locale-specific facets
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
代码转换方面
Original:
Code conversion facets
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
codecvt_utf8(C++11)
codecvt_utf16(C++11)
codecvt_utf8_utf16(C++11)
codecvt_mode(C++11)
C语言环境
Original:
C locale
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
Defined in header <locale>
class time_base;
std::time_base提供的日期顺序继承的std::time_get方面的常数.
Original:
The class std::time_base provides the date order constants which are inherited by the std::time_get facets.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[编辑] 会员类型

会员类型
Original:
Member type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Definition
enum dateorder { no_order, dmy, mdy, ymd, ydm };
无作用域的枚举类型
Original:
Unscoped enumeration type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
枚举常量
Original:
Enumeration constant
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Definition
no_order
未指定的顺序
Original:
Unspecified order
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
dmy
日,月,年(欧洲的)命令
Original:
Day, month, year (european) order
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
mdy
月,日,年(美国)的顺序
Original:
Month, day, year (american) order
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
ymd
年,月,日
Original:
Year, month, day
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
ydm
年,月,日
Original:
Year, day, month
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[编辑] 另请参阅

解析输入字符序列分解成struct std::tm的时间/日期值
Original:
parses time/date values from an input character sequence into struct std::tm
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(类模板) [edit]