选择特殊符号

选择搜索类型

热门搜索

首页 > 百科 > 建设工程百科

coord

COORD是Windows API中定义的一种结构,表示一个字符在控制台屏幕上的坐标。其定义为:
typedef struct _COORD {
SHORT X; // horizontal coordinate
SHORT Y; // vertical coordinate
} COORD;

coord基本信息

coord性质

表示一个字符在控制台屏幕上的坐标。

应用

c 中的例子:

#include

#include

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!"<

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);

}2100433B

查看详情

coord造价信息

  • 市场价
  • 信息价
  • 询价

coord定义

typedef struct _COORD {

SHORT X; // horizontal coordinate

SHORT Y; // vertical coordinate

} COORD;

查看详情

coord常见问题

查看详情

相关推荐

立即注册
免费服务热线: 400-888-9639