kbhit()函数

/*#include<iostream>usingnamespacestd;#include<conio.h>voidmain(){while(true){if(kbhi... /*

#include <iostream>
using namespace std;
#include <conio.h>
void main()
{
while(true)
{
if(kbhit())
{
cout<<1;
cin.sync();
if(kbhit())
{
cout<<2<<endl;//会输出
}
system("pause");
}
}
}*/

/*

#include <iostream>
using namespace std;
#include <conio.h>
void main()
{
while(true)
{
if(kbhit())
{
cout<<1;
char c=getch();
if(kbhit())
{
cout<<2<<endl;//不会输出
}
system("pause");
}
}
}*/

/*

#include <iostream>
using namespace std;
#include <conio.h>
void main()
{
while(true)
{
if(kbhit())
{
cout<<1;
if(kbhit())
{
cout<<2<<endl;//2会输出
}
system("pause");
}
}
}*/
以上是三个程序
我的问题是 kbhit()检查键盘有无按下,第一个程序当按下键盘上的键时,第一个kbhit()为真,可以输出1,但是为什么第二个kbhit()也为真
为什么第二个程序的第二个kbhit()为假

请解惑
展开
 我来答
艳阳高照的午后
推荐于2017-09-09 · TA获得超过1万个赞
知道大有可为答主
回答量:1.2万
采纳率:97%
帮助的人:5026万
展开全部
  kbhit()(VC++6.0下为_kbhit())
  功 能及返回值: 检查当前是否有键盘输入,若有则返回一个非0值,否则返回0
  用 法:int kbhit(void);
  包含头文件: include <conio.h>
  程序示例:
  C语言
  下面的代码,如果没有键盘输入程序一直输出Hello World,直到用户按Esc结束。
  #include<stdio.h>
  #include<conio.h>
  #include<stdlib.h>
  int main(void)
  {
  char ch;
  while(1)
  {
  printf("HelloWorld\n");
  if(kbhit())
  {
  ch=getch();
  if(27==ch)
  break;
  }
  }
  printf("End!\n");
  system("pause");
  return 0;
  }
  
BTzjzxxx
推荐于2017-09-14 · TA获得超过4534个赞
知道大有可为答主
回答量:981
采纳率:0%
帮助的人:661万
展开全部
摘自MSDN:
--------------------------------------------------------------------------------

kbhit() Does Not Take Character out of Buffer

Article Last Modified on 03-26-2002

The information in this article applies to:

The C Run-Time (CRT)
Microsoft C for MS-DOS
Microsoft C for OS/2
Microsoft C/C++ for MS-DOS
Microsoft Visual C++ for Windows, 16-bit edition 1.0, 1.5
Microsoft Visual C++, 32-bit Editions 1.0, 2.0, 4.0, 5.0, 6.0
Microsoft Visual C++ .NET (2002)

--------------------------------------------------------------------------------
NOTE: Microsoft Visual C++ NET (2002) supported both the managed code model that is provided by the .NET Framework and the unmanaged native Windows code model. The information in this article applies to unmanaged Visual C++ code only.

Summary
When an application tests the value returned by the kbhit() function, the application must explicitly remove the character from the keyboard buffer after entering the keystroke. Otherwise, kbhit() continues to return TRUE.

The following code example demonstrates the situation:

Sample Code
/*
* Compiler options needed: None
*/

#include <conio.h>

void main(void)
{
while (!kbhit())
; // Waits for keystroke
while (kbhit())
getch(); // Empties buffer
while (!kbhit())
; // Waits for keystroke
}

kbhit()不会清空缓冲区内容,一旦有键盘事件,必须使用getch()清空缓存,至于为什么cin.sync();会不能清空缓存我也不太清楚,可能与编译器有关
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式