QT c++ 在使用信号和槽从另一个 class 调用 class 的方法时崩溃

QT c++ crashes while calling method of class from another class using signals and slots

我正在尝试创建基于 QQuickWidget 的应用程序。

我想做什么:

Class A(game.h) 和 Class B(gamestate.h) 是前向声明的。 Class A 是主要的 QQuickWidget class 方法。 Class B QObject derived class 包含信号、槽、变量和方法。

Class B 变量值可以从 class A -- Working

当变量值改变时应该发出信号 -- 工作

当发出信号时,应该在 class B 中调用插槽方法 -- 工作

Class B 应该调用 class A 中的方法 -- working

Class A 应该创建另一个 qquickwidget -- 不工作 (没有编译错误。应用程序在加载时崩溃)

我尝试从 class 调用 A 并且 showIntro() 函数工作正常。但是当试图从 class B 调用时,它不起作用。

Game.h

#ifndef GAME_H
#define GAME_H
#include <QQuickWidget>
class GameState;

class Game: public QQuickWidget
{
Q_OBJECT
public:
   Game();
   GameState *gameState;
   void showIntro();
public slots:
   void onStatusChanged(QQuickWidget::Status);
};

#endif // GAME_H

Game.cpp

#include "game.h"
#include <QQuickWidget>
#include <QDebug>
#include "gamestate.h"

Game::Game(): QQuickWidget()
{
   gameState = new GameState(this);
   mainScreen = new QQuickWidget();
   connect(this, SIGNAL(statusChanged(QQuickWidget::Status)), this,    SLOT(onStatusChanged(QQuickWidget::Status)));

   setFixedSize(450, 710);
   setSource(QUrl("qrc:/EmptyScreen.qml"));

}

void Game::onStatusChanged(QQuickWidget::Status status)
{

switch(status)
{
    case QQuickWidget::Ready:
        qDebug() << "hi";
        gameState->setValue(1);
        //showIntro();
        break;
    case QQuickWidget::Error:
        qDebug() << "Error";
        break;
}
}
void Game::showIntro()
{
  mainScreen->setSource(QUrl("qrc:/MainScreen.qml"));
  mainScreen->setAttribute(Qt::WA_TranslucentBackground);
  mainScreen->setParent(this);
}

这是我的 Gamestate.h

#ifndef GAMESTATE_H
#define GAMESTATE_H

#include <QObject>


class Game;


class GameState : public QObject
{
 Q_OBJECT
public:
   explicit GameState(QObject *parent = 0);

   int value() const {return m_value; }
   Game *game;
signals:
   void valueChanged(int newValue);

public slots:
   void setValue(int value);
   void stateChanged(int value);
private:
   int m_value;
};

#endif // GAMESTATE_H

GameState.cpp

#include "gamestate.h"
#include "game.h"

GameState::GameState(QObject *parent) : QObject(parent)
{
   m_value = 0;
   connect(this,SIGNAL(valueChanged(int)), this, SLOT(stateChanged(int)));
}

void GameState::setValue(int value)
{
  if(value != m_value)
{
   m_value = value;
   emit valueChanged(value);
}

}

void GameState::stateChanged(int value)
{
   if(value == 1)
{
    game->showIntro();
}

}

和我的决赛 main.cpp

#include <QApplication>
#include <QQmlApplicationEngine>
#include "game.h"

Game *game;

int main(int argc, char *argv[])
{
QApplication app(argc, argv);

game = new Game();
game->show();
return app.exec();
}

请告诉我可能是什么问题。

class GameState 的成员变量 Game* game 未初始化,因此在尝试取消引用 GameState::stateChanged().

中的指针时程序崩溃

GameState 的构造函数更改为以下内容:

// in gamestate.h
explicit GameState(Game *parent = 0);

// in gamestate.cpp
GameState::GameState(Game *parent) : QObject(parent), game(parent)
{
   m_value = 0;
   connect(this,SIGNAL(valueChanged(int)), this, SLOT(stateChanged(int)));
}