std::time_get_byname
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <locale> 中定义
|
||
template< class CharT, class InputIterator = std::istreambuf_iterator<CharT> > class time_get_byname : public std::time_get<CharT, InputIterator> { |
||
std::time_get_byname是一个std::time_get方面,它封装在其建设中指定的区域设置的日期和时间的分析规则.
原文:
std::time_get_byname is a std::time_get facet which encapsulates time and date parsing rules of the locale specified at its construction.
两个专业所提供的标准库
原文:
Two specializations are provided by the standard library
在头文件
<locale> 中定义 | |
std::time_get_byname<char, InputIterator> | 窄/多字节的时间解析
|
std::time_get_byname<wchar_t>, InputIterator | 宽字符串解析
|
目录 |
[编辑] 会员类型
会员类型
|
Definition |
char_type
|
CharT
|
iter_type
|
OutputIterator
|
[编辑] 成员函数
构造一个新time_get_byname方面 原文: constructs a new time_get_byname facet (公共成员函数) | |
解构一个time_get_byname方面 (受保护的成员函数) |
Inherited from std::time_get
会员类型
|
Definition |
char_type
|
CharT
|
iter_type
|
InputIt
|
Member objects
会员名称
|
Type |
id (静态的)
|
std::locale::id |
Member functions
调用 do_date_order (公共成员函数of std::time_get )
| |
调用 do_get_time (公共成员函数of std::time_get )
| |
调用 do_get_date (公共成员函数of std::time_get )
| |
调用 do_get_weekday (公共成员函数of std::time_get )
| |
调用 do_get_monthname (公共成员函数of std::time_get )
| |
调用 do_get_year (公共成员函数of std::time_get )
| |
调用 do_get (公共成员函数of std::time_get )
|
Protected member functions
[虚]</div></div>
|
获得首选的日,月,年的顺序 原文: obtains preferred ordering of day, month, and year (虚拟保护成员函数of std::time_get )
|
[虚]</div></div>
|
从输入流中提取物的小时,分钟和秒 原文: extracts hours, minutes, and seconds from input stream (虚拟保护成员函数of std::time_get )
|
[虚]</div></div>
|
从输入流中的提取物,月,日和年 原文: extracts month, day, and year from input stream (虚拟保护成员函数of std::time_get )
|
[虚]</div></div>
|
extracts the name of a day of the week from input stream (虚拟保护成员函数of std::time_get )
|
[虚]</div></div>
|
extacts月份的名称输入流 原文: extacts a month name from input stream (虚拟保护成员函数of std::time_get )
|
[虚]</div></div>
|
从输入流中提取一年 (虚拟保护成员函数of std::time_get )
|
[虚]</div></div>
|
从输入流中提取日期/时间组件,根据指定的格式 原文: extracts date/time components from input stream, according to the specified format (虚拟保护成员函数of std::time_get )
|
</div>
Inherited from std::time_base
类型
|
Definition |
dateorder
|
日期顺序枚举类型,定义的值
no_order ,dmy ,mdy ,ymd ,ydm 原文: date order enumeration type, defining the values no_order , dmy , mdy , ymd , and ydm |
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
解析输入字符序列分解成struct std::tm的时间/日期值 原文: parses time/date values from an input character sequence into struct std::tm (类模板) | |
(C++11) |
解析一个日期/时间值的指定格式 原文: parses a date/time value of specified format (函数模板) |