std::time_get<CharT,InputIt>::get_weekday, std::time_get<CharT,InputIt>::do_get_weekday
来自 cppreference.com
定义在头文件 <locale> 中 |
||
public: iter_type get_weekday( iter_type beg, iter_type end, std::ios_base& str, |
(1) | |
protected: virtual iter_type do_get_weekday( iter_type beg, iter_type end, std::ios_base& str, |
(2) | |
1) 公共成员函数,调用最派生类的受保护虚拟成员函数
do_get_weekday
。2) 从序列
[
beg,
end)
中读取连续的字符,并使用此语言环境期望的星期几名称的默认格式(可能缩写)进行解析,该格式与 "%a" 相同,如函数 std::get_time、time_get::get 和 POSIX 函数 strptime()
使用。如果它找到缩写名称,后跟对完整名称有效的字符,它将继续读取,直到它消耗所有完整名称的字符,或者找到一个意外的字符,在这种情况下,即使前几个字符是有效的缩写,解析也会失败。
解析的星期几存储在 std::tm 字段 t->tm_wday.
如果在读取有效的星期几名称之前到达结束迭代器,则函数在 err 中设置 std::ios_base::eofbit。如果遇到解析错误,则函数在 err 中设置 std::ios_base::failbit。
内容 |
[编辑] 参数
beg | - | 指定要解析的序列开头的迭代器 |
end | - | 要解析的序列的结束迭代器后的一个迭代器 |
str | - | 一个流对象,该函数使用它来获取需要的语言环境构面,例如 std::ctype 来跳过空白或 std::collate 来比较字符串 |
err | - | 流错误标志对象,该对象由该函数修改以指示错误 |
t | - | 指向将保存此函数调用结果的 std::tm 对象的指针 |
[编辑] 返回值
迭代器指向 [
beg,
end)
中最后一个被识别为有效的星期几名称一部分的字符后的一个字符。
[编辑] 备注
此函数通常不区分大小写。
如果遇到解析错误,此函数的大多数实现都会使 *t 保持不变。
[编辑] 示例
运行此代码
#include <initializer_list> #include <iostream> #include <iterator> #include <locale> #include <sstream> #include <string_view> void try_get_wday(std::string_view s) { std::cout << "Parsing the weekday out of '" << s << "' in the locale " << std::locale().name() << '\n'; std::istringstream str{s.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_weekday({str}, {}, str, err, &t); str.setstate(err); std::istreambuf_iterator<char> last{}; if (str) { std::cout << "Successfully parsed, weekday number is " << t.tm_wday; 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'; } void demo(std::string_view locale_name, std::initializer_list<std::string_view>&& data) { 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; } for (std::string_view const weekday : data) try_get_wday(weekday); } int main() { demo("lt_LT.utf8", {"Št", "Šeštadienis"}); demo("en_US.utf8", {"SATELLITE"}); demo("ja_JP.utf8", {"土曜日"}); }
可能的输出
Parsing the weekday out of 'Št' in the locale lt_LT.utf8 Successfully parsed, weekday number is 6 the input was fully consumed Parsing the weekday out of 'Šeštadienis' in the locale lt_LT.utf8 Successfully parsed, weekday number is 6 the input was fully consumed Parsing the weekday out of 'SATELLITE' in the locale en_US.utf8 Successfully parsed, weekday number is 6 Remaining content: ELLITE Parsing the weekday out of '土曜日' in the locale ja_JP.utf8 Successfully parsed, weekday number is 6 the input was fully consumed
[编辑] 缺陷报告
以下更改行为的缺陷报告已追溯应用于先前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 248 | C++98 | eofbit 未在到达结束迭代器时设置 |
如果未读取有效的星期几名称,则设置 eofbit |
[编辑] 另请参阅
(C++11) |
解析指定格式的日期/时间值 (函数模板) |