命名空间
变体
操作

std::time_get<CharT,InputIt>::get_date, std::time_get<CharT,InputIt>::do_get_date

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

iter_type get_date( iter_type beg, iter_type end, std::ios_base& str,

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

virtual iter_type do_get_date( iter_type beg, iter_type end, std::ios_base& str,

                               std::ios_base::iostate& err, std::tm* t ) const;
(2)
1) 公共成员函数,调用最派生类的受保护虚拟成员函数 do_get_date
2) 从序列 [begend) 中读取连续的字符,并使用此区域设置预期使用的默认格式解析出日历日期值,该格式确定为
date_order() 格式
no_order "%m/%d/%y"
dmy "%d/%m/%y"
mdy "%m/%d/%y"
ymd "%y/%m/%d"
ydm "%y/%d/%m"
与函数 std::get_time()get() 和 POSIX 函数 strptime() 中使用的格式相同。
解析的日期存储在参数 t 所指向的 std::tm 结构的相应字段中。
如果在读取有效日期之前达到结束迭代器,则函数在 err 中设置 std::ios_base::eofbit。 如果遇到解析错误,则函数在 err 中设置 std::ios_base::failbit

内容

[编辑] 参数

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

[编辑] 返回值

指向 [begend) 中作为有效日期的一部分识别的最后一个字符之后的迭代器。

[编辑] 备注

对于默认日期格式的字母组件(如果有),此函数通常不区分大小写。

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

该实现可能支持除标准要求的格式之外的其他日期格式。

[编辑] 示例

#include <ctime>
#include <iostream>
#include <iterator>
#include <locale>
#include <sstream>
 
void try_get_date(const std::string& s)
{
    std::cout << "Parsing the date 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;
    const std::time_get<char>& facet = std::use_facet<std::time_get<char>>(str.getloc());
    std::istreambuf_iterator<char> ret = facet.get_date({str}, {}, str, err, &t);
    str.setstate(err);
 
    if (str)
    {
        std::cout << "Day: " << t.tm_mday << ' '
                  << "Month: " << t.tm_mon + 1 << ' '
                  << "Year: " << t.tm_year + 1900 << '\n';
    }
    else
    {
        std::cout << "Parse failed. Unparsed string: ";
        std::copy(ret, {}, std::ostreambuf_iterator<char>(std::cout));
        std::cout << '\n';
    }
}
int main()
{
    std::locale::global(std::locale("en_US.utf8"));
    try_get_date("02/01/2013");
    try_get_date("02-01-2013");
 
    std::locale::global(std::locale("ja_JP.utf8"));
    try_get_date("2013年02月01日");
}

输出

Parsing the date out of '02/01/2013' in the locale en_US.utf8
Day: 1 Month: 2 Year: 2013
Parsing the date out of '02-01-2013' in the locale en_US.utf8
Parse failed. Unparsed string: -01-2013
Parsing the date out of '2013年02月01日' in the locale ja_JP.utf8
Day: 1 Month: 2 Year: 2013

[编辑] 缺陷报告

以下行为更改的缺陷报告已追溯应用于先前发布的 C++ 标准。

DR 应用于 已发布的行为 正确行为
LWG 248 C++98 eofbit 未在到达结束迭代器时设置 如果未读取有效日期,则设置 eofbit
LWG 461 C++98 do_get_date 需要解析本地化的日期表示形式 使用由 date_order() 确定的格式进行解析

[编辑] 参见

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