std::chrono::operator<< (std::chrono::file_time)

来自cppreference.com
< cpp‎ | chrono‎ | file clock

 
 
日期和时间工具
(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 风格日期和时间
 
std::chrono::file_clock
成员函数

(仅若不提供 to_utcfrom_utc 才提供)

(仅若不提供 to_sysfrom_sys 才提供)
时间点 I/O
operator<<
 
template <class CharT, class Traits, class Duration>

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

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

如同用 std::chrono::to_stream(os, fmt, tp) 输出 tp 到流 os 中,其中 fmt 是含有加宽到 CharT"%F %T" 的字符串。

返回值

os

参阅

按照给定的格式输出 file_time 到流
(函数模板)