kbhit()函数解析
作者:互联网
kbhit
函数名:kbhit() 功能及返回值: 检查当前是否有键盘输入,若有则返回一个非0值,否则返回0。 用 法:int kbhit(void); C++语言包含头文件: include <conio.h>。 C语言不需包含额外头文件。 在VC++6.0下为_kbhit() 功能及返回值同上;
C++语言实现
1 2 3 4 5 6 7 8 9 10 11 12 |
#include<conio.h>
#include<iostream>
using namespace std;
int main()
{
while (!kbhit()) //当没有键按下
{
cout<< "无键按下" <<endl;
}
cout<< "有键按下" <<endl; //有键按下时输出这
system ( "pause" );
}
|
标签:返回,解析,函数,C++,kbhit,按下,include 来源: https://www.cnblogs.com/booksBlog/p/10343550.html