命名空间
变体
操作

std::time_get<CharT,InputIt>::get_year, std::time_get<CharT,InputIt>::do_get_year

来自 cppreference.com
< cpp‎ | locale‎ | time get
 
 
 
 
定义在头文件 <locale>
public:

iter_type get_year( iter_type s, iter_type end, std::ios_base& str,

                    std::ios_base::iostate& err, std::tm* t ) const;
(1)
protected:

virtual iter_type do_get_year( iter_type s, iter_type end, std::ios_base& str,

                               std::ios_base::iostate& err, std::tm* t ) const;
(2)
1) 公共成员函数,调用最派生类的受保护的虚成员函数 do_get_year
2) 从序列 [begend) 中读取连续的字符,并使用一些实现定义的格式解析年份。

解析后的年份存储在 std::tm 结构字段 t->tm_year.

如果在读取有效年份之前到达了结束迭代器,则函数在 err 中设置 std::ios_base::eofbit。如果遇到解析错误,则函数在 err 中设置 std::ios_base::failbit

内容

[编辑] 参数

beg - 指定要解析序列的起点的迭代器
end - 要解析序列的结束迭代器后的一个迭代器
str - 一个流对象,此函数使用它在需要时获取区域设置构面,例如 std::ctype 跳过空格或 std::collate 比较字符串
err - 流错误标志对象,此函数修改它以指示错误
t - 指向 std::tm 对象的指针,该对象将保存此函数调用的结果

[编辑] 返回值

指向 [begend) 中被识别为有效年份一部分的最后一个字符后的一个迭代器。

[编辑] 注意

对于两位数的输入值,许多实现使用与 '%y' 转换说明符相同的解析规则,如 std::get_timestd::time_get::get() 和 POSIX 函数 strptime() 中使用的那样:期望两位数整数,范围 [6999] 的值导致 1969 到 1999 的值,范围 [0068] 的值导致 2000 到 2068。

如果遇到解析错误,此函数的大多数实现都会保留 *t 不变。

[编辑] 示例

#include <iostream>
#include <iterator>
#include <locale>
#include <sstream>
 
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::time_get<char> const& facet = std::use_facet<std::time_get<char>>(str.getloc());
    std::istreambuf_iterator<char> ret = facet.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++ 标准。

DR 应用于 已发布的行为 正确的行为
LWG 248 C++98 eofbit 未在到达结束迭代器时设置 如果未读取有效年份,则设置 eofbit

[编辑] 另请参见

(C++11)
解析指定格式的日期/时间值
(函数模板) [编辑]