CppDS.com

C++ 98 11 14 17 20 手册

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) 从序列 [beg, end) 读取相继字符,并用此 locale 所期待的默认格式分析出日历时间值,其格式与以下相同
"%x" (C++11 前)
"%d/%m/%y""%m/%d/%y""%y/%m/%d""%y/%d/%m" ,取决于 date_order() (C++11 起)
格式指定符为函数 std::get_timetime_get::get 和 POSIX 函数 strptime() 所用。
存储分析的时间到参数 t 所指向的 std::tm 结构体的对应域中。
若在读到合法值前抵达尾迭代器,则函数设置 err 中的 std::ios_base::eofbit 。若遇到分析错误,则函数设置 err 中的 std::ios_base::failbit

参数

beg - 指代要分析的序列起始的迭代器
end - 要分析的序列的尾后一位置迭代器
str - 此函数在需要时用以获得 locale 平面的流对象,例如用 std::ctype 跳过空白符或用 std::collate 比较字符串
err - 此函数所修改以指示错误的流错误标志对象
t - 指向 std::tm 对象的指针,该对象将保有此函数调用结果

返回值

指向 [beg, end) 中辨识为合法日期一部分的末字符后一位置的迭代器。

注意

对于默认时间格式的字母组分(若存在),此函数通常不区别大小写。

若遇到分析错误,则此函数的大多数实现保留 *t 不修改。

实现可以支持标准所要求之外的其他日期格式。

示例

#include <iostream>
#include <locale>
#include <sstream>
#include <iterator>
#include <ctime>
 
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;
    std::istreambuf_iterator<char> ret =
        std::use_facet<std::time_get<char>>(str.getloc()).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++11)
剖析指定格式的日期/时间值
(函数模板)
关闭