std::chrono::operator<<(std::chrono::weekday)
来自 cppreference.com
定义在头文件 <chrono> 中 |
||
template< class CharT, class Traits > std::basic_ostream<CharT, Traits>& |
(自 C++20 起) | |
如果 !wd.ok(),则将 wd.c_encoding() 后跟 " is not a valid weekday" 插入到 os 中。否则,使用与 os 关联的区域设置,形成一个 std::basic_string<CharT> s,其中包含 wd 所表示的星期的缩写名称,并将 s 插入到 os 中。
等效于
return os << (wd.ok() ?
std::format(os.getloc(), STATICALLY_WIDEN<CharT>("{:L%a}"), wd) :
std::format(os.getloc(), STATICALLY_WIDEN<CharT>("{} is not a valid weekday"),
wd.c_encoding()));
其中 STATICALLY_WIDEN<CharT>("...") 如果 CharT
是 char,则为 "...",如果 CharT
是 wchar_t,则为 L"..."。
内容 |
[edit] 返回值
os
[edit] 示例
本节内容尚未完善 原因:没有示例 |
[edit] 缺陷报告
以下行为变更缺陷报告已追溯应用于先前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
P2372R3 | C++20 | 默认情况下使用给定的区域设置 | 需要 L 来使用给定的区域设置 |
[edit] 另请参阅
(C++20) |
将参数的格式化表示存储在新的字符串中 (函数模板) |
weekday 的格式化支持(类模板特化) |