CppDS.com

C++ 98 11 14 17 20 手册

std::time_get<CharT,InputIt>::get_time, std::time_get<CharT,InputIt>::do_get_time

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

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

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

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

                            std::ios_base::iostate& err, std::tm* t) const;
(2)
1) 公开成员函数,调用最终导出类的受保护虚成员函数 do_get_time
2) 从字符序列 [beg, end) 读取相继的字符,并分析出遵循与下列格式指定符相同规则的时间值
'%X' (C++11 前)
"%H:%M:%S" (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 跳过空白符
err - 此函数所修改以指示错误的流错误标志对象
t - 指向 std::tm 对象的指针,该对象将保有此函数调用结果

返回值

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

注意

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

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

示例

#include <iostream>
#include <locale>
#include <sstream>
#include <iterator>
 
void try_get_time(const std::string& s)
{
    std::cout << "Parsing the time 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_time(
            {str}, {}, str, err, &t
        );
    str.setstate(err);
    if(str) {
        std::cout << "Hours: "   << t.tm_hour << ' '
                  << "Minutes: " << t.tm_min  << ' '
                  << "Seconds: " << t.tm_sec  << '\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("ru_RU.utf8"));
    try_get_time("21:40:11");
    try_get_time("21-40-11");
 
    std::locale::global(std::locale("ja_JP.utf8"));
    try_get_time("21時37分58秒");
}

输出:

Parsing the time out of '21:40:11' in the locale ru_RU.utf8
Hours: 21 Minutes: 40 Seconds: 11
Parsing the time out of '21-40-11' in the locale ru_RU.utf8
Parse failed. Unparsed string: -40-11
Parsing the time out of '21時37分58秒' in the locale ja_JP.utf8
Hours: 21 Minutes: 37 Seconds: 58

参阅

(C++11)
剖析指定格式的日期/时间值
(函数模板)
关闭