如何删除放入 std::cout 的最后一个字符?

发布于 2024-09-19 23:17:28 字数 33 浏览 7 评论 0原文

是否可以在 Windows 上不使用 WinAPI?

Is it possible on Windows without using WinAPI?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

可是我不能没有你 2024-09-26 23:17:28

您不能删除最后一个字符。

但是您可以通过覆盖最后一个字符来获得类似的效果。
为此,您需要通过输出“\b”(退格)字符来向后移动控制台光标,如下所示。

#include<iostream>
using namespace std;
int main()
{
    cout<<"Hi";
    cout<<'\b';  //Cursor moves 1 position backwards
    cout<<" ";   //Overwrites letter 'i' with space
}

所以输出是

H

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.

#include<iostream>
using namespace std;
int main()
{
    cout<<"Hi";
    cout<<'\b';  //Cursor moves 1 position backwards
    cout<<" ";   //Overwrites letter 'i' with space
}

So the output would be

H

人海汹涌 2024-09-26 23:17:28

这段代码正是这样做的:

std::cout<<"\b \b";

This code does exactly that:

std::cout<<"\b \b";
ι不睡觉的鱼゛ 2024-09-26 23:17:28

不。

如果不访问从来都不是标准的控制台 API,就无法做到这一点。

No.

You can't without accessing the console's api that is never standard.

甜`诱少女 2024-09-26 23:17:28

您还可以使用 cin.get() 删除最后一个字符

You can also use cin.get() to delete last char

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文