倒带 std::cout 回到行首

Rewinding std::cout to go back to the beginning of a line(倒带 std::cout 回到行首)
本文介绍了倒带 std::cout 回到行首的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在为 Mac OS X 编写一个命令行工具来处理一堆文件.我想向用户展示当前正在处理的文件,但不希望大量文件污染终端窗口.

I'm writing a command-line tool for Mac OS X that processes a bunch of files. I would like to show the user the current file being processed, but do not want a bazillion files polluting the terminal window.

相反,我想使用一行来输出文件路径,然后将该行重复用于下一个文件.是否有一个字符(或其他一些代码)输出到 std::cout 来完成这个?

Instead I would like to use a single line to output the file path, then reuse that line for the next file. Is there a character (or some other code) to output to std::cout to accomplish this?

另外,如果我想将此工具重新定位到 Windows,两个平台的解决方案是否相同?

Also, if I wanted to re-target this tool for Windows, would the solution be the same for both platforms?

推荐答案

" " 应该适用于 Windows 和 Mac OS X.

" " should work for both windows and Mac OS X.

类似于:

std::cout << "will not see this
will see this" << std::flush;
std::cout << std::endl; // all done

这篇关于倒带 std::cout 回到行首的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Unable to access non-const member functions of objects in C++ std::set(无法访问 C++ std::set 中对象的非常量成员函数)
Constructing std::function argument from lambda(从 lambda 构造 std::function 参数)
STL BigInt class implementation(STL BigInt 类实现)
Sync is unreliable using std::atomic and std::condition_variable(使用 std::atomic 和 std::condition_variable 同步不可靠)
Move list element to the end in STL(在 STL 中将列表元素移动到末尾)
Why is overloading operatoramp;() prohibited for classes stored in STL containers?(为什么禁止对存储在 STL 容器中的类重载 operatoramp;()?)