C ++ / Qt获取指针的指针值

时间:2014-05-05 20:30:08

标签: c++ qt pointers

我认为我是一个指向指针的指针,并希望获得指针对象,指针也指向。或获取指针指向的指针,指针是指针。

QGraphicsScene * scene = new QGraphicsScene();
ui->GraphicsView->setScene(scene);
loc.setPointer(&scene);

位置类,对象loc。

setPointer(QGraphicsScene* x) {
    scene = x;
}

它说QGraphicsScene **无法转换为QGraphicsScene *。所以我假设**表示指向指针的指针。

1 个答案:

答案 0 :(得分:2)

试试这个:

QGraphicsScene * scene = new QGraphicsScene();
ui->GraphicsView->setScene(scene);
loc.setPointer(scene);

& scene是指向场景指针的指针