Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一个用于命令行程序的旋转光标形式的进度指示器。我阅读了几个线程,建议使用退格符 \b 删除最后一个打印的字符。但是,在 OSX 上将 \b 与 cout 一起使用时,结果是一些 UTF-8 字符(一个倒置的问号)。
有谁知道是否有办法用标准 C++ 手段解决这个问题?
您可以使用ncurses 库进行跨平台终端访问。您可以使用它制作漂亮的纯文本 UI。