如何删除放入 std::cout 的最后一个字符?
是否可以在 Windows 上不使用 WinAPI?
Is it possible on Windows without using WinAPI?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以在 Windows 上不使用 WinAPI?
Is it possible on Windows without using WinAPI?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
您不能删除最后一个字符。
但是您可以通过覆盖最后一个字符来获得类似的效果。
为此,您需要通过输出“\b”(退格)字符来向后移动控制台光标,如下所示。
所以输出是
You may not remove last character.
But you can get the similar effect by overwriting the last character.
For that, you need to move the console cursor backwards by outputting a '\b' (backspace) character like shown below.
So the output would be
这段代码正是这样做的:
This code does exactly that:
不。
如果不访问从来都不是标准的控制台 API,就无法做到这一点。
No.
You can't without accessing the console's api that is never standard.
您还可以使用 cin.get() 删除最后一个字符
You can also use
cin.get()
to delete last char