0

所以我希望有人能在以下方面再次帮助我。我想在另一个类中使用一个类的指针。

汽车.h

class wheel;

class car : public QMainWindow
{
public:
    car (QWidget *parent = 0);

    wheel *test;
};

class wheel : QGraphicsPixmapItem
{
public:
    wheel();

    void hoverEnterEvent (QGraphicsSceneHoverEvent*);
};

汽车.cpp

#include "car.h"

wheel::wheel()
{

}

car::car (QWidget*)
{
    test = new wheel;
    test -> setAcceptHoverEvents (true);
}

wheel::hoverEnterEvent (QGraphicsSceneHoverEvent*)
{
    test -> setPixmap (/*thePixmap*/);
}

问题是,我不能在类轮中使用指针“测试”,而且我真的不知道如何在“不”使指针“测试”全局的情况下做到这一点。

4

1 回答 1

2

wheel::hoverEnterEvent是轮组的一部分。它不需要指向自身的指针来对自身进行操作,所以只需替换

test -> setPixmap (/*thePixmap*/);

setPixmap (/*thePixmap*/);
于 2012-07-18T17:49:47.910 回答