Linux中的Curses Window没有在屏幕上显示。但它实际上存在于后台并且还输入

时间:2017-04-24 06:37:08

标签: linux perl curses

Linux中的Curses Window 在屏幕上显示。但它在背景中几乎存在并且也接受输入。可能是什么问题?

相同的代码在AIX和Solaris机器上运行良好,但在SUSE,RedHat或任何其他Linux机器上都不行。

我的部分代码如下:

my $screen = newwin(40,40,1,1);

$screen->clrtoeol();
$screen->addstr( 20,20,"Hello World" );
$screen->standend();
$screen->refresh();

0 个答案:

没有答案