错误:数组下标的类型'const bool [int]'无效

时间:2018-05-21 13:18:05

标签: c++ arrays types subscript

有人可以帮助我吗? 我不知道自己要改变什么。我想创建一个2D网格和其他一些东西。

这是我的代码中最重要的部分。

#include <ncurses.h>

bool cells;
const MAX_GRID_SIZE;

//_________________________________________________
void initializeGame() {
  initscr();
  cbreak();
  noecho();
  curs_set(false);
  nodelay(stdscr, true);
  keypad(stdscr, true);
  mousemask(ALL_MOUSE_EVENTS, NULL);

  // Cells (0 = false, 1 = true).
  MAX_GRID_SIZE = 500
  cells[MAX_GRID_SIZE][MAX_GRID_SIZE] = { 0 };
}
//_________________________________________________
void showState() {
  while (true) {
    MEVENT event;
    int key = getch();
    if (key == KEY_MOUSE) {
      if (getmouse(&event) == OK && (event.bstate & BUTTON1_CLICKED)) {
        int x = event.x;
        int y = event.y;
        mvprintw(0, 0, "Mouse clicked at %d, %d\n", x, y);
        cells[x][y] = !cells[x][y];
        if (cells[x][y] == true) { attron(A_REVERSE); }
        mvprintw(y, x, " ");
        attroff(A_REVERSE);
        refresh();
      }
    }
  }

  // Clean up.
  endwin();
}

1 个答案:

答案 0 :(得分:0)

如果cells是一个2D数组,那么将其声明为:

const size_t MAX_GRID_SIZE = 500;
bool cells[MAX_GRID_SIZE][MAX_GRID_SIZE] = { 0 };