Namespaces
Variants

std::chrono:: operator<< (std::chrono::year_month_weekday_last)

From cppreference.net
定义于头文件 <chrono>
template < class CharT, class Traits >

std:: basic_ostream < CharT, Traits > &
operator << ( std:: basic_ostream < CharT, Traits > & os,

const std:: chrono :: year_month_weekday_last & ymwdl ) ;
(C++20 起)

ymwdl 的文本表示输出到 os 中,如同通过

os << std:: format ( os. getloc ( ) , STATICALLY_WIDEN < CharT > ( "{}/{:L}/{:L}" ) ,
ymwdl. year ( ) , ymwdl. month ( ) , ymwdl. weekday_last ( ) ) ;

其中 STATICALLY_WIDEN < CharT > ( "{}/{:L}/{:L}" ) CharT char 时是 "{}/{:L}/{:L}" ,当 CharT wchar_t 时是 L "..."

返回值

os

缺陷报告

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

缺陷报告 适用范围 发布时行为 正确行为
P2372R3 C++20 默认使用给定的区域设置 需要使用 L 前缀来使用给定的区域设置

参见

(C++20)
将参数的格式化表示存储到新字符串中
(函数模板)
year_month_day 提供格式化支持
(类模板特化)