我一直在尝试制作一个ncurses程序,它将在某一点结束ncurses模式,并在正常的终端模式下恢复,但仍然保持程序运行.
可能吗? endwin();结束程序.
这是我的代码(不要担心功能,我之前做过):
clear();
refresh();
endwin();
Boxmessage("STEP 1");
consolewrite("Removing Popularity Contest...");
std::vector
最佳答案
endwin()不会终止你的程序;别的东西必须这样做.
原文链接:https://www.f2er.com/linux/440884.html该程序在我的系统上正常工作(Ubuntu 11.04,g 4.5.2):
#include
它清除屏幕,在预期位置打印“Hello,world”,睡眠4秒,然后恢复屏幕并打印“DONE”.
正如在评论中提到的,如果Boxmessage()使用ncurses,那么在调用endwin()之后它就无法工作.
尝试在创建和写入文件的endwin()之后添加一些代码,只是为了验证您的程序是否在那里死亡.
更新(近16个月后),引用OP的最新评论:
OK,I found the bug. It was just because I made a series of buttons,
then I did the ‘case: x’ part,and I just didn’t write the integer
that calls the function correctly. Thanks for trying to help!