gpt4 book ai didi

c++ - 二维结构类型数组,我做错了什么?

转载 作者:行者123 更新时间:2023-11-30 01:20:08 24 4
gpt4 key购买 nike

我有一个结构类型

typedef struct {

Point CellLocation;
enumCell isOccupied;
Node* coveringStation;
vector< pair<float,Node*> > coveredBy;
} Cell;

然后尝试使用动态输入声明二维单元格数组,例如:

this->Height = par("Height");
this->Width = par("Width");

Cell **c;

c = new Cell*[Width];
for (int i = 0; i < Width; i++)
Cell[i]= new Cell[Height];

我得到这个输出:

 error: expected unqualified-id before ‘[’ token

on Cell[i]= new Cell[Width];

我做错了什么?

最佳答案

Cell 是你的类型名

你想做 c[i] = new ...

关于c++ - 二维结构类型数组,我做错了什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19766916/

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