在 Windows 控制台中打印 x,y 位置
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将光标定位在控制台中的 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.