[メモ]C言語でgetch()について


getch()関数は、コンソールから文字を取得するエコーなしです.getch()関数を使用して、プログラムデバッグの実行が終了した後、プログラマがキーボードを押すのを待ってから編集インタフェース、すなわち任意のキーの継続効果に戻ります.
#include <stdio.h>
#include <conio.h>

int main()
{
	int i ;
	i = getch();
	printf("press any key to continue
"); printf("%d
", i); return 0; }

Windows下getch()はconio.hのヘッダファイルにありますがconio.hは標準ライブラリファイルではなく、C standard library、ISO C、POSIX規格には定義されていません.Linuxシステムにはこのヘッダファイルはありませんが、ネット上ではcursesと言っています.h、それから1つのライブラリをダウンロードして、しかし半日も成功して取得していないで、ネット上から1つの方法を見つけてgetch()の機能を実現しました.
 
 int getch()
{
   struct termios tm, tm_old;
   int fd = STDIN_FILENO,c;

   if (tcgetattr(fd, &tm) < 0)
   {
      return -1;
   }

   tm_old = tm;
   cfmakeraw(&tm);

   if (tcsetattr(fd, TCSANOW, &tm) < 0)
   {
      return -1;
   }

   c = fgetc(stdin);

   if (tcsetattr(fd,TCSANOW,&tm_old) < 0)
   {
      return -1;
   }

   return c;
}

 
直接使用できます.
 
/******************************************************************
 *  :	       
 *  :	void
 *   :	void
*******************************************************************/
void press_key()
{
   printf("     ...
"); getch(); }

 
ヘッダファイル
#include <stdio.h>
#include <stdlib.h>
#include <termios.h>
#include <unistd.h>

 
転載は以下のことを明記してください.http://blog.csdn.net/qduningning/article/details/7879923