gpt4 book ai didi

c++ - 如何初始化 QGraphicsItem 的二维数组

转载 作者:行者123 更新时间:2023-11-30 03:37:47 25 4
gpt4 key购买 nike

我将 Qt 用于一些 gui 的东西,我继承了 QGraphicsScene 来实现我自己的一些方法,我所做的其中一件事是创建一个 QGraphicsItems 列表,特别是我制作的对象的二维数组继承了 QGraphicsItem。

MatrixButton **buttons;

然后,当我使用此方法从 QGraphicsScene 初始化列表时,出现段错误。

void MatrixScene::initScene()
{
this->setSceneRect(0, 0, this->width*BUTTON_SIZE, this->height*BUTTON_SIZE);
this->currentFrameIndex = 0;
this->color = Qt::red;
this->buttons = new MatrixButton*[this->height];
for (int i = 0; i < this->height; i++){
this->buttons[i] = new MatrixButton[this->width];
}
for (int x = 0; x < this->width; x++){
for (int y = 0; y < this->height; y++){
this->buttons[x][y].setPos(x*BUTTON_SIZE, y*BUTTON_SIZE); //SEGMENTATION FAULT!!!
this->addItem(&this->buttons[x][y]);
}
}
this->update();
}

当我调试应用程序时,调试器告诉我问题是由 QGraphicsItem.h 中的以下行引起的:

inline void QGraphicsItem::setPos(qreal ax, qreal ay)
{ setPos(QPointF(ax, ay)); }

根据调试器,具体来说,当 ax = 640ay = 0 时会发生错误。我不明白在这种情况下会导致段错误的原因。

最佳答案

您的问题是您使用 x 作为行的索引,使用 y 作为列的索引,但边界条件恰好相反

因此将您的代码修改为:

for (int x = 0; x < this->height; x++){
for (int y = 0; y < this->width; y++){
this->buttons[x][y].setPos(x*BUTTON_SIZE, y*BUTTON_SIZE);
this->addItem(&this->buttons[x][y]);
}
}

关于c++ - 如何初始化 QGraphicsItem 的二维数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40040830/

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