std::time_base
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <locale> 中定义
|
||
class time_base; |
||
类std::time_base提供的日期顺序继承的std::time_get方面的常数.
原文:
The class std::time_base provides the date order constants which are inherited by the std::time_get facets.
[编辑] 会员类型
会员类型
|
Definition |
enum dateorder { no_order, dmy, mdy, ymd, ydm }; | 无作用域的枚举类型
|
枚举常量
|
Definition |
no_order
|
未指定的顺序
|
dmy
|
日,月,年(欧洲的)命令
|
mdy
|
月,日,年(美国)的顺序
|
ymd
|
年,月,日
|
ydm
|
年,月,日
|
[编辑] 另请参阅
解析输入字符序列分解成struct std::tm的时间/日期值 原文: parses time/date values from an input character sequence into struct std::tm (类模板) |