C/C++獲取鍵盤事件

在vs中可使用_kbhit()函數來獲取鍵盤事件,使用時須要加入conio.h頭文件,例:ios #include <conio.h> #include <iostream> using namespace std; int main() { int ch; while (1){ if (_kbhit()){//若是有按鍵按下,則_kbhit()函數返回真 ch = _getch
相關文章
相關標籤/搜索