gpt4 book ai didi

c++ - Ncurses CTRL + s 挂起 getch()

转载 作者:行者123 更新时间:2023-11-30 01:01:31 26 4
gpt4 key购买 nike

为什么在这个简单的程序中:

#include <curses.h>
#include <iostream>

int main() {
initscr();
keypad(stdscr, TRUE);
timeout(-1);
int c = getch();
std::cout << c << std::endl;
endwin();
}

ctrl + s 会挂起吗?

最佳答案

当您使用 initscr 启动 curses 时, 终端处于 cooked 模式,支持 XON/XOFF。在 curses 手册页中,它被称为“流控制字符”POSIX将其称为“输出控制”:

IXON
Enable start/stop output control.

如果您调用 raw , 将 XON/XOFF off,您可以使用 controlS:

#include <curses.h>
#include <iostream>

int main() {
initscr();
raw(); // possibly what you intended
keypad(stdscr, TRUE);
timeout(-1);
int c = getch();
std::cout << c << std::endl;
endwin();
}

您的应用程序可以调用 tcgetattr 来确定是否设置了底层 XON/XOFF 模式,但这无助于确定 curses 是否设置了原始模式:

  • curses 总是将终端设置为原始模式,
  • curses 为您的应用程序模拟 cooked/raw 模式,并且
  • curses 没有您的应用程序可以调用以查找当前状态的函数。

关于c++ - Ncurses CTRL + s 挂起 getch(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59078885/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com