gpt4 book ai didi

c++ - 如何在 C++ 中为二维数组重载 operator[]

转载 作者:行者123 更新时间:2023-11-28 06:16:59 28 4
gpt4 key购买 nike

我有一个使用 vector<Cell>Map 类存储 Cell 的二维数组秒。我重载了 operator[]使用 map[i][j] 访问 Map 中的数据.

我的问题是它只适用于第一行数据。一旦i = 1我得到一个段错误。代码如下,任何帮助将不胜感激! 谢谢

在 Map 类中(如果您需要更多详细信息,请告诉我):

/* Declaration of the vector<Cell> */
vector<Cell> map_;

/* The Operator Overload */
const Cell* operator[](int x) const {
return &map_[x * this->width_];
}

/* Constructor */
explicit Map(double mapStep) : stepSize_(trunc(mapStep * 1000) / 1000) {
if (mapStep > 0) {
this->height_ = trunc((ARENA_HEIGHT / mapStep));
this->width_ = trunc((ARENA_WIDTH / mapStep));
} else { cerr << "Map Constructor Error #2" << endl; return; }

mapInit();
}

void mapInit() {
int i = 0, j = 0;
this->map_.resize(this->height_ * this->width_);

for (auto &cell : this->map_) {
cell = Cell(Cell::cell_type::NOGO, i, j);
if (j < this->width_ - 1) { j++; } else { j = 0; i++; }
}
}

main()中的代码:

int i = 0, j = 0;
Map * map = new Map(20);

for (; i < map->getHeight() ;) {
cout << "[" << map[i][j]->x << ", " << map[i][j]->y << ", " << map[i][j]->t << "]";

if (j < map->getWidth() - 1) { j++; } else { j = 0; i++; cout << endl; }
}

输出

[0, 0, 255][1, 0, 255][2, 0, 255][3, 0, 255][4, 0, 255][5, 0, 255][6, 0, 255][7, 0, 255][8, 0, 255][9, 0, 255][10, 0, 255][11, 0, 255]Segmentation fault

第一行输出似乎是正确的,之前的测试使用了 operator() 的重载工作正常,我真的需要改用 [ ]。

最佳答案

我不知道为什么它失败了,但我能够按照 Paul 的建议替换 Map * map = new Map(20); 来修复它使用 Map map(20);

我的 Java 背景现在可能很明显了。谢谢大家!

关于c++ - 如何在 C++ 中为二维数组重载 operator[],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30062153/

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