gpt4 book ai didi

c - getyx 返回 -1 -1

转载 作者:太空宇宙 更新时间:2023-11-04 01:42:14 28 4
gpt4 key购买 nike

#include <stdio.h>
#include <curses.h>

int main () {

int y, x;
getyx( curscr, y, x);

printf("x=%i, y=%i", x, y);
return 0; }

gcc a.c -lcurses -o a

x=-1, y=-1

为什么?

最佳答案

也许您应该在尝试使用 curses 之前调用 initscr();

#include <stdio.h>
#include <curses.h>

int main (void)
{
int y = 0, x = 0;

initscr();
getyx(curscr, y, x);
printw("x = %d, y = %d", x, y);
refresh();
getchar();
endwin();
return 0;
}

您会发现至少阅读编程库的一些文档是值得投入时间的,例如http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/

关于c - getyx 返回 -1 -1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3382306/

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