命名空间
变体
操作

std::chrono::operator<<(std::chrono::month)

来自 cppreference.cn
< cpp‎ | chrono‎ | month
 
 
 
 
定义于头文件 <chrono>
template< class CharT, class Traits >

std::basic_ostream<CharT, Traits>&

    operator<<( std::basic_ostream<CharT, Traits>& os, const std::chrono::month& m );
(自 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>("...")"..." 如果 CharTchar,而 L"..." 如果 CharTwchar_t

目录

[编辑] 返回值

os

[编辑] 注解

operator<< 主要用于调试用途。为了控制格式化,请使用 std::format

[编辑] 缺陷报告

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

DR 应用于 发布时的行为 正确的行为
P2372R3 C++20 默认使用给定的区域设置 需要 L 来使用给定的区域设置

[编辑] 参见

(C++20)
将格式化的参数表示形式存储在新字符串中
(函数模板) [编辑]
month 的格式化支持
(类模板特化) [编辑]