千家信息网

conio.h指的是什么头文件

发表于:2024-11-19 作者:千家信息网编辑
千家信息网最后更新 2024年11月19日,这篇文章给大家分享的是有关conio.h指的是什么头文件的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。conio.h是控制台输入输出函数头文件,其中con是控制台Conso
千家信息网最后更新 2024年11月19日conio.h指的是什么头文件

这篇文章给大家分享的是有关conio.h指的是什么头文件的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

conio.h是控制台输入输出函数头文件,其中con是控制台Console英文缩写,io是Input/Output输入输出,它不属于C语言标准库;它还定义了通过控制台进行数据输入和数据输出的函数,如键盘输入、屏幕输出。

"conio.h"头文件是 控制台输入输出函数头文件。con 是控制台Console英文缩写,io是 Input/Output 输入输出。它不属于C语言标准库。

它定义了通过控制台进行数据输入和数据输出的函数,例如 键盘输入,屏幕输出。它是早期C语言用的输入输出函数库。除了个别函数以外,现在基本不用(而用标准库 stdio.h)。

可能用的函数是 getch(); 和 kbhit(void);

getch(); 用于瞬时读取按下的键,(不等待回车换行键的到来)。

kbhit(void); 用于瞬时检查 是否有按键动作。其它函数很少用到。

包含的函数

cgets(char*);;cputs(constchar*);cscanf(constchar*,...);inpw(unsignedshort);getch(void);getche(void);kbhit(void);outp(unsignedshort,int);outpw(unsignedshort,unsignedshort);putch(int);ungetch(int);
void_Cdeclclreol(void);void_Cdeclclrscr(void);void_Cdecldelline(void);int_Cdeclgettext(intleft,inttop,intright,intbottom,void*destin);void_Cdeclgettextinfo(structtext_info*r);void_Cdeclgotoxy(intx,inty);void_Cdeclhighvideo(void);void_Cdeclinsline(void);void_Cdecllowvideo(void);int_Cdeclmovetext(intleft,inttop,intright,intbottom,intdestleft,intdesttop);void_Cdeclnormvideo(void);int_Cdeclputtext(intleft,inttop,intright,intbottom,void*source);void_Cdecltextattr(intnewattr);void_Cdecltextbackground(intnewcolor);void_Cdecltextcolor(intnewcolor);void_Cdecltextmode(intnewmode);int_Cdeclwherex(void);int_Cdeclwherey(void);void_Cdeclwindow(intleft,inttop,intright,intbottom);char*_Cdeclcgets(char*str);int_Cdeclcprintf(constchar*format,...);int_Cdeclcputs(constchar*str);int_Cdeclcscanf(constchar*format,...);int_Cdeclgetch(void);int_Cdeclgetche(void);char*_Cdeclgetpass(constchar*prompt);int_Cdeclkbhit(void);int_Cdeclputch(intc);int_Cdeclungetch(intch);

用法

conio库不仅适用于 Windows 平台,在 Linux 下也可使用.网上已经有兼容包,下载后打开就可使用;而至于Mac的os X中提供的Xcode却并不支持这一函数库。

感谢各位的阅读!关于"conio.h指的是什么头文件"这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

0