std::chrono::operator<< (std::chrono::zoned_time)

来自cppreference.com
< cpp‎ | chrono‎ | zoned time
 
 
 
日期和时间工具
(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, class Duration, class TimeZonePtr>

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

           const std::chrono::zoned_time<Duration, TimeZonePtr>& tp);
(C++20 起)

如同用 std::chrono::to_stream(os, fmt, tp) 输出 tp 到流 os ,其中 fmt 是加宽成 CharT"%F %T %Z"

返回值

os

参阅

按照提供的格式输出 zoned_time 到流中
(函数模板)