在 Windows 控制台中打印 x,y 位置

发布于 2024-12-26 14:42:27 字数 274 浏览 0 评论 0原文

我想在 Windows 中的标准控制台上的某个 (X,Y) 位置进行打印。
我尝试使用 conio.h,但已弃用/不存在。 Gotoxy(x,y) 方法似乎就是我想要的。我已经尝试过这些方法,但它只是打印额外的字符:

    printf("%c[%d;%df",0x1B,y,x);
    printf("\x1B%c[%d;%df",0x1B,y,x);
    printf("\x1B[%d;%dH", 0x1B, y, x);  

提前致谢。

I want to print, in a certain (X,Y) position, on a standard console in windows.
I tried to use conio.h, but is deprecated/non-existing. There was the gotoxy(x,y) method that seems to be what I want. I've tried these ways, but it just prints extra characters:

    printf("%c[%d;%df",0x1B,y,x);
    printf("\x1B%c[%d;%df",0x1B,y,x);
    printf("\x1B[%d;%dH", 0x1B, y, x);  

Thanks in advance.

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

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

发布评论

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

评论(1

尤怨 2025-01-02 14:42:27

将光标定位在控制台中的 Windows API 调用是 SetConsoleCursorPosition

正如有人评论的那样,“curses”是一个跨平台控制台库,用于执行以下操作:Windows 存在实现。 (我认为“PDcurses”就是这样的一种实现。)这些可以让您执行诸如颜色、光标位置等操作,并将您的程序移植到其他操作系统,例如 Linux。

您列出的 printf 语句是多种类型终端的转义序列。不幸的是,Windows 不使用转义序列来进行终端定位。

The Windows API call to position the cursor in a console is SetConsoleCursorPosition.

As someone commented, "curses" is a cross platform console library for doing stuff like this: implementations exist for Windows. ("PDcurses" I think is one such implementation.) These will let you do things like, color, cursor position, etc., and have your program port to other OS, such as Linux.

The printf statements you list are escape sequences for several types of terminals out there. Unfortunately, Windows does not use escape sequences for terminal positioning stuff.

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