gotoxy
是一个非标准的 C++ 函数,通常用于在控制台上设置光标位置
SetConsoleCursorPosition
函数实现类似功能。这是一个 Win32 API 函数,需要包<windows.h>` 头文件。示例代码:
#include<iostream>
#include<windows.h>
void gotoxy(int x, int y) {
COORD coord = {x, y};
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), coord);
}
int main() {
gotoxy(5, 5);
std::cout << "Hello, World!"<< std::endl;
return 0;
}
\033[
开始,后跟一些参数和一个字母(如 H
)表示光标位置。示例代码:
#include<iostream>
void gotoxy(int x, int y) {
std::cout << "\033[" << y << ";" << x << "H";
}
int main() {
gotoxy(5, 5);
std::cout << "Hello, World!"<< std::endl;
return 0;
}
为了在不同操作系统中实现兼容性,可以根据编译器宏定义来选择合适的实现方式。例如:
#include<iostream>
#ifdef _WIN32
#include<windows.h>
void gotoxy(int x, int y) {
COORD coord = {x, y};
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), coord);
}
#else
void gotoxy(int x, int y) {
std::cout << "\033[" << y << ";" << x << "H";
}
#endif
int main() {
gotoxy(5, 5);
std::cout << "Hello, World!"<< std::endl;
return 0;
}
这样,代码将根据当前操作系统自动选择合适的实现方式。