为什么 ncurses 不显示文本?
ncurses_init();
ncurses_addstr(0, 0, "test");
ncurses_refresh();
ncurses_getch();
ncurses_end();
这应该在左上角显示“测试”,但事实并非如此。知道为什么吗?
PHP 5.1.6 CentOS 5.5
通过 yum install ncurses 获得了 ncurses
它可以识别 ncurses 功能,所以我认为它应该可以工作
ncurses_init();
ncurses_addstr(0, 0, "test");
ncurses_refresh();
ncurses_getch();
ncurses_end();
This should be displaying "test" at the top left, but it isn't. Any idea why?
PHP 5.1.6
CentOS 5.5
Got ncurses through yum install ncurses
it recognizes the ncurses functions, so I assume it should be working
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
呃哦!看起来有人忘记阅读文档 !
UH OH! Looks like someone forgot to read the docs!
您需要将 ncurses_addstr 更改为 ncurses_mvaddstr
You need to change ncurses_addstr to ncurses_mvaddstr