std::chrono::operator<< (std::chrono::year)
来自cppreference.com
template <class CharT, class Traits> std::basic_ostream<CharT, Traits>& |
(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 到流中 (函数模板) |