std::chrono::operator<< (std::chrono::year_month)
来自cppreference.com
< cpp | chrono | year month
template< class CharT, class Traits > std::basic_ostream<CharT, Traits>& |
(C++20 起) | |
如同用 os << ym.year() << '/' << ym.month() 输出 ym
的文本表示到流 os
中。
返回值
os
。
注意
此 operator<<
主要为调试用途而设。以非默认流标志使用时,输出可能令人诧异:
为控制格式,需用 std::chrono::format 。
参阅
按照提供的格式输出 year_month 到流中 (函数模板) | |
(C++20) |
为插入格式化可输出到流的 chrono 对象 (函数模板) |