std::time_get<CharT,InputIt>::get_year, std::time_get<CharT,InputIt>::do_get_year
定义于头文件 <locale>
|
||
public: iter_type do_get_year( iter_type s, iter_type end, std::ios_base& str, |
(1) | |
protected: virtual iter_type do_get_year( iter_type s, iter_type end, std::ios_base& str, |
(2) | |
1) 公开成员函数,调用最终导出类的受保护虚成员函数
do_get_year
。2) 读取来自序列
[beg, end)
的相继字符,用某实现定义格式分析出年。取决于 locale ,可能接受二位的年,而它们属于哪个世纪是实现定义的。存储分析而得的年于 std::tm 结构体域 t->tm_year 。
若在读到合法日期前抵达尾迭代器,则函数设置 err
中的 std::ios_base::eofbit 。若遇到分析错误,则函数设置 err
中的 std::ios_base::failbit 。
参数
beg | - | 指代要分析的序列起始的迭代器 |
end | - | 要分析的序列的尾后一位置迭代器 |
str | - | 此函数在需要时用以获得 locale 平面的流对象,例如用 std::ctype 跳过空白符或用 std::collate 比较字符串 |
err | - | 此函数所修改以指示错误的流错误标志对象 |
t | - | 指向 std::tm 对象的指针,该对象将保有此函数调用结果 |
返回值
指向 [beg, end)
中辨识为合法年一部分的末字符后一位置的迭代器。
注意
对于二位输入值,许多实现使用同 std::get_time 、 std::time_get::get() 和 POSIX 函数 strptime()
所用的转换指定符 '%y' 的分析规则:期待二位整数,范围 [69,99] 中的值导致值 1969 到 1999 ,范围 [00,68] 导致 2000-2068 。四位输入典型地保持原状接受。
若遇到分析错误,则此函数的大多数实现保留 *t
不修改。
示例
运行此代码
#include <iostream> #include <locale> #include <sstream> #include <iterator> void try_get_year(const std::string& s) { std::cout << "Parsing the year out of '" << s << "' in the locale " << std::locale().name() << '\n'; std::istringstream str(s); std::ios_base::iostate err = std::ios_base::goodbit; std::tm t; std::istreambuf_iterator<char> ret = std::use_facet<std::time_get<char>>(str.getloc()).get_year( {str}, {}, str, err, &t ); str.setstate(err); std::istreambuf_iterator<char> last{}; if (str) { std::cout << "Successfully parsed, year is " << 1900 + t.tm_year; if (ret != last) { std::cout << " Remaining content: "; std::copy(ret, last, std::ostreambuf_iterator<char>(std::cout)); } else { std::cout << " the input was fully consumed"; } } else { std::cout << "Parse failed. Unparsed string: "; std::copy(ret, last, std::ostreambuf_iterator<char>(std::cout)); } std::cout << '\n'; } int main() { std::locale::global(std::locale("en_US.utf8")); try_get_year("13"); try_get_year("2013"); std::locale::global(std::locale("ja_JP.utf8")); try_get_year("2013年"); }
可能的输出:
Parsing the year out of '13' in the locale en_US.utf8 Successfully parsed, year is 2013 the input was fully consumed Parsing the year out of '2013' in the locale en_US.utf8 Successfully parsed, year is 2013 the input was fully consumed Parsing the year out of '2013年' in the locale ja_JP.utf8 Successfully parsed, year is 2013 Remaining content: 年
参阅
(C++11) |
剖析指定格式的日期/时间值 (函数模板) |