std::chrono::operator<< (std::chrono::year)

来自cppreference.com
< cpp‎ | chrono‎ | year
 
 
日期和时间工具
(C++11)
(C++11)
时钟
(C++20)
                                                  
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
日历
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
时区
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
C 风格日期和时间
 
 
template <class CharT, class Traits>

std::basic_ostream<CharT, Traits>&

operator<<(std::basic_ostream<CharT, Traits>& os, const std::chrono::year& y);
(C++20 起)

形成由存储于 y 的年份值格式化为十进制数,若结果会少于四位则向左边添加 0 到四位组成的 std::basic_string<CharT> s 。插入该字符串到 os 中。然后,若 !y.ok() ,则插入字符串 " is not a valid year"os 中。

返回值

os

注意

operator<< 主要为调试目的而设。欲控制格式,可使用 std::chrono::format

参阅

(C++20)
为插入格式化可输出到流的 chrono 对象
(函数模板)
按照提供的格式输出 year 到流中
(函数模板)