命名空间
变体
操作

std::time_get<CharT,InputIt>::get_monthname, std::time_get<CharT,InputIt>::do_get_monthname

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

iter_type get_monthname( 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_monthname( iter_type beg, iter_type end, std::ios_base& str,

                                    std::ios_base::iostate& err, std::tm* t ) const;
(2)
1) 公共成员函数,调用最派生类的受保护虚拟成员函数 do_get_monthname
2) 从序列 [begend) 中读取连续的字符,并使用此区域设置预期月份名称的默认格式解析出月份名称(可能缩写),此格式与 "%b" 相同,如 std::get_timetime_get::get 和 POSIX 函数 strptime() 所用。

如果找到缩写名称,后面跟着完整的名称的有效字符,它将继续读取,直到消耗完整名称的所有字符或找到意外的字符,在这种情况下,即使前几个字符是有效的缩写,解析也会失败。

解析后的月份存储在 std::tm 字段 t->tm_mon.

如果在读取有效月份名称之前到达结束迭代器,该函数将在 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>
#include <string_view>
 
void try_get_mon(std::string_view locale_name, std::string_view source)
{
    try
    {
        std::locale::global(std::locale(locale_name.data()));
    }
    catch (std::runtime_error const& ex)
    {
        std::cout << "Cannot setup locale: " << locale_name << "\n"
                     "Exception: " << ex.what() << '\n';
        return;
    }
 
    std::cout << "Parsing the month out of '" << source
              << "' in the locale " << std::locale().name() << '\n';
    std::istringstream str{source.data()};
    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_monthname({str}, {}, str, err, &t);
    str.setstate(err);
    std::istreambuf_iterator<char> last{};
 
    if (str)
    {
        std::cout << "Successfully parsed, month number is " << t.tm_mon;
 
        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()
{
    try_get_mon("ja_JP.utf8", "2月");
    try_get_mon("th_TH.utf8", "กุมภาพันธ์");
    try_get_mon("el_GR.utf8", "Φεβ");
    try_get_mon("el_GR.utf8", "Φεβρουάριος");
    try_get_mon("en_US.utf8", "Febrile");
}

可能的输出

Parsing the month out of '2月' in the locale ja_JP.utf8
Successfully parsed, month number is 1. The input was fully consumed
Parsing the month out of 'กุมภาพันธ์' in the locale th_TH.utf8
Successfully parsed, month number is 1. The input was fully consumed
Parsing the month out of 'Φεβ' in the locale el_GR.utf8
Successfully parsed, month number is 1. The input was fully consumed
Parsing the month out of 'Φεβρουάριος' in the locale el_GR.utf8
Successfully parsed, month number is 1. The input was fully consumed
Parsing the month out of 'Febrile' in the locale en_US.utf8
Parse failed. Unparsed string: ile

[编辑] 缺陷报告

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

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

[编辑] 另请参阅

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