coord

生活百科 2023-01-25 21:22生活百科www.aizhengw.cn

coord

COORD是Windows API中定义的一种结构,表示一个字元在控制台萤幕上的坐标。其定义为

typedef struct _COORD {

SHORT X; // horizontal coordinate

SHORT Y; // vertical coordinate

} COORD;

基本介绍

  • 外文名coord
  • 出处Windows API
  • 表示一个字元在控制台萤幕上的坐标
  • 所属学科软体

定义

typedef struct _COORD {
SHORT X; // horizontal coordinate
SHORT Y; // vertical coordinate
} COORD;

性质

表示一个字元在控制台萤幕上的坐标。
套用
c++中的例子
#include <iostream>
#include <Windows.h>
using namespace std;
void gotoxy(int x,int y)
{
COORD loc={x,y};
HANDLE hOutput=GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleCursorPosition(hOutput,loc);
}
int main()
{
gotoxy(2,0);
cout<<"Hello World!"<<endl;
system("pause");
return 0;
}
=============输出结果为(下划线表示此处无字元,)==============
__Hello World!
请按任意键继续...
==========================================================
C中的例子
void Pos(int x, int y)
{
COORD pos;
HANDLE hOutput;
pos.X = x;
pos.Y = y;
hOutput = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleCursorPosition(hOutput, pos);
}

Copyright@2015-2025 www.aizhengw.cn 癌症网版板所有