linux下c++如何输入不回显且输入不用回车

参考链接

下面代码实现的是输入一个小写字母只能看到大写字母

#include 
#include            
#include      
#include 
using namespace std;

int main(void){   
    char c;   
    static struct termios oldt, newt;
    tcgetattr( STDIN_FILENO, &oldt);
    newt = oldt;
    newt.c_lflag &= ~(ICANON);          
    tcsetattr( STDIN_FILENO, TCSANOW, &newt);
    system("stty -echo");
    while((c=getchar())!= 'e') {
      char d = c + 'A' - 'a';
      cout << d << endl;    
    }     

    system("stty echo");              
    tcsetattr( STDIN_FILENO, TCSANOW, &oldt);
    return 0;
}

其中system(“stty -echo”) 与 system(“stty echo”) 之间的代码的执行都不会回显

你可能感兴趣的:(c++)