std::chrono::operator<<(std::chrono::month)
来自 cppreference.com
定义在头文件 <chrono> 中 |
||
template< class CharT, class Traits > std::basic_ostream<CharT, Traits>& |
(自 C++20 起) | |
如果 !m.ok(),则将 unsigned(m) 后跟 " is not a valid month" 插入到 os 中。否则,将形成一个 std::basic_string<CharT> s,它包含由 m 表示的月份的缩写月份名称,使用与 os 关联的区域设置确定,并将 s 插入到 os 中。
等效于
return os << (m.ok() ?
std::format(os.getloc(), STATICALLY_WIDEN<CharT>("{:L%b}"), m) :
std::format(os.getloc(), STATICALLY_WIDEN<CharT>("{} is not a valid month"), unsigned(m)));
其中 STATICALLY_WIDEN<CharT>("...") 为 "..."(如果 CharT
为 char),或 L"..."(如果 CharT
为 wchar_t)。
内容 |
[编辑] 返回值
os
[编辑] 注释
此 operator<< 主要用于调试目的。要控制格式,请使用 std::format。
[编辑] 缺陷报告
以下更改行为的缺陷报告已追溯应用于以前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确的行为 |
---|---|---|---|
P2372R3 | C++20 | 默认情况下使用给定的区域设置 | 需要 L 才能使用给定的区域设置 |
[编辑] 参见
(C++20) |
将参数的格式化表示存储在一个新的字符串中 (函数模板) |
对 month 的格式化支持(类模板特化) |