0

我正在创建一个包含 Cells 的程序,为此我有一个 Cell 类和一个 CellManager 类。单元格组织在一个二维数组中,Cell 类管理器有两个 int 成员变量,xgrid 和 ygrid,它们反映了数组的大小。

由于某种原因,我无法弄清楚,这些成员变量在程序执行过程中会发生变化。任何人都可以看到为什么会发生这种情况,或者也许可以指出我在哪里看的方向。

使用的类和函数如下所示:

class Cell
{
    public:
        Cell(int x, int y);
}

---------------------------------

class CellManager
{
     public:
         CellManager(int xg, int yg)

         void registercell(Cell* cell, int x, int y);
         int getxgrid() {return xgrid;}
         int getygrid() {return ygrid;}

     private:
         int xgrid;
         int ygrid;         
         Cell *cells[40][25];

}

-----------------------

and CellManagers functions:

CellManager::CellManager(int xg, int yg)
{
    CellManager::xgrid = xg;
    CellManager::ygrid = yg;
}

void CellManager::registercell(Cell *cell, int x, int y)
{
    cells[x][y] = cell;
}

这是主要功能:

int main ()
{
    const int XGRID = 40;
    const int YGRID = 25;

    CellManager *CellsMgr = new CellManager(XGRID, YGRID);

    std::cout << CellsMgr->getxgrid() << std::endl; // PRINTS 40 
    std::cout << CellsMgr->getygrid() << std::endl; // PRINTS 25

    //create the cells and register them with CellManager
    for(int i = 1; i <= XGRID; i++) {

        for(int j = 1; j <= YGRID; j++) {

            Cell* cell = new Cell(i, j);
            CellsMgr->registercell(cell, i, j);
        }
    }

    std::cout << CellsMgr->getxgrid() << std::endl; // PRINTS A RANDOM LARGE INT, EX. 7763680 !!
    std::cout << CellsMgr->getygrid() << std::endl; // PRINTS 1, ALWAYS !!

因此,我初始化了一个 CellMgr,并通过构造函数设置了 xgrid 和 ygrid。然后我创建了一堆 Cell 并将它们注册到 CellMgr。在这之后,CellMgr 的两个成员变量发生了变化,有人知道这是怎么回事吗?

4

1 回答 1

12

数组是零索引的,但是您使用它们时就像从 1 开始索引一样。因此,您的数组索引将覆盖单元格,并注销数组的末尾,这是未定义的行为。覆盖随机的其他变量当然是可能的。

于 2012-12-30T17:47:12.103 回答