std::flush
来自cppreference.com
在标头 <ostream> 定义
|
||
template< class CharT, class Traits > std::basic_ostream<CharT, Traits>& flush( std::basic_ostream<CharT, Traits>& os ); |
||
如同以调用 os.flush() 冲洗输出序列 os。
这是仅输出的 I/O 操纵符,可以用如 out << std::flush 的表达式对任何 std::basic_ostream 类型的 out
调用。
注解
此操纵符可用于立即产生输出的不完整行,例如从长时间运行的进程显示输出,记录多个线程的活动,或记录可能非预期地崩溃的程序活动。若产生的进程进行任何屏幕 I/O,则调用 std::system 前亦需要 std::cout 的显式冲洗(常见例子为 Windows 上的 std::system("pause"))。多数其他常见的交互 I/O 场景中,使用 std::cout 时 std::endl 是冗余的,因为任何来自 std::cin 的输入、到 std::cerr 的输出或程序终止都会强制调用 std::cout.flush()。
需要冲洗完整行时,可使用 std::endl 操纵符。
每次输出操作都需要冲洗时,可使用 std::unitbuf 操纵符。
参数
os | - | 到输出流的引用 |
返回值
os(到操纵后的流的引用)。
示例
若没有 std::flush
,输出可能相同,但可能不实时出现。
运行此代码
#include <chrono> #include <iostream> template<typename Diff> void log_progress(Diff d) { std::cout << std::chrono::duration_cast<std::chrono::milliseconds>(d) << " ... " << std::flush; } int main() { volatile int sink = 0; auto t1 = std::chrono::high_resolution_clock::now(); for (int j = 0; j < 5; ++j) { for (int n = 0; n < 10000; ++n) for (int m = 0; m < 20000; ++m) sink += m * n; // 做一些工作 auto now = std::chrono::high_resolution_clock::now(); log_progress(now - t1); } std::cout << '\n'; }
可能的输出:
567ms ... 1137ms ... 1707ms ... 2269ms ... 2842ms ...
参阅
控制是否每次操作后冲洗输出 (函数) | |
输出 '\n' 并冲洗输出流 (函数模板) | |
与底层存储设备同步 ( std::basic_ostream<CharT,Traits> 的公开成员函数) |