所以我有这些代码行:
int maxY, maxX;
getmaxyx(stdscr, &maxY, &maxX);
它给了我以下错误:
error C2440: '=' : cannot convert from 'int' to 'int *'
Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast
每次我使用它两次。我什至没有使用 = 运算符!包括 curses.h 文件。我究竟做错了什么?