gpt4 book ai didi

c++ - 遇到二维结构数组 C++ 的问题

转载 作者:太空宇宙 更新时间:2023-11-04 15:20:15 24 4
gpt4 key购买 nike

我搜索了这个网站和谷歌,并没有真正找到解决我问题的任何东西。我现在正在尝试编写一个游戏,这个游戏包含玩家可以移动的地形图 block map 。我想将图 block 存储在 10x10 数组中,但我在初始化数组时遇到了问题。

我可以初始化数组的第一个维度,但错误在于在第一个 for 循环中初始化第二个维度。

这是我的代码:

//tile on the "map"
struct tile
{
char type;
bool isWall;
};

void initializeMap(tile * map)
{
int index1, index2;

for(index1 = 0; index1 < 10; index1++)
{
map[index1] = new tile[10];

for(index2 = 0; index2 < 10; index2++)
{

}
}
}

int main()
{
tile * tileMap = new tile[10];
initializeMap(tileMap);

return 0;
}

我收到这个错误:

C:\Users\----\Desktop\TextGame.cpp||In function 'void initializeMap(tile*)':|
C:\Users\----\Desktop\TextGame.cpp|39|error: no match for 'operator=' in '*(map + ((unsigned int)(((unsigned int)index1) * 2u))) = (tile*)operator new [](20u)'|
C:\Users\----\Desktop\TextGame.cpp|9|note: candidates are: tile& tile::operator=(const tile&)|
||=== Build finished: 1 errors, 0 warnings ===|

最佳答案

您正在尝试使用以下命令将实际对象设置为指针:

map[index1] = new tile[10];

map 是一个tile*。然而,map[index1] 是一个被引用的 tile*,这使得它实际上是一个不能等于 tile*tile new tile[10] 给你。

因此,您的代码将更好地工作:

struct tile {
char type;
bool isWall;
};

/**
* Initialize the map
* @param map The array of tile pointers
*/
void initializeMap(tile** map) {
int index1, index2;
for (index1 = 0; index1 < 10; index1++) {

// Set each element of the tile* array
// to another array of tile pointers
map[index1] = new tile[10];

for (index2 = 0; index2 < 10; index2++) {
// Do Something
}
}
}

int main() {
// Create a pointer to a set of tile pointers
tile** tileMap = new tile*[10];
// Pass it to the initializer
initializeMap(tileMap);
return 0;
}

关于c++ - 遇到二维结构数组 C++ 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20980577/

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