1

我在 Qt 5.3 中建立了一个死锁。如何正确修复?没有丑陋的修复(不要删除 qquickview *)

我有一个带有指向QQuickView. 当我需要关闭我的应用程序时,我会调用QGuiApplication::quit()并尝试QQuickView *在 singlenot 的析构函数中释放。结果 - 应用程序冻结。

样本:

测试.qml

import QtQuick 2.1

Rectangle
{
    id: root;
    color: "black";

    signal quit();
    Component.onDestruction: quit();
}

主文件

#include <QGuiApplication>
#include <QQuickView>
#include <QQuickItem>
#include <QPointer>


struct Singleton
{
    QPointer< QQuickView > w;
    static Singleton inst;

    int run( int argc, char *argv[] )
    {
        QGuiApplication a( argc, argv );
        w = new QQuickView();

        QObject::connect( w, &QQuickView::statusChanged, [=]()
        {
            QObject::connect( w->rootObject(), SIGNAL( quit() ), qApp, SLOT( quit() ) );
        } );

        w->setSource( QUrl( "qrc:/test.qml" ) );
        w->setResizeMode( QQuickView::SizeRootObjectToView );
        w->show();

        a.exec();

        return 0;
    }

    ~Singleton()
    {
        delete w;   // Comment this to fix bug
    }

};

Singleton Singleton::inst;


int main(int argc, char *argv[] )
{
    Singleton::inst.run( argc, argv );
    return 0;
}

PS C++0x 用于简化代码。C++03 编译器的结果相同。

4

1 回答 1

0

这是Qt中的一个错误。自 5.4 版本以来已修复。

于 2017-09-18T09:51:53.443 回答