我做了一个QException的子类,如下所示:

#include <QtConcurrent>
#include <QException>

class ProcessingException : public QException
{
public:
    ProcessingException(QString const& message) :
        message(message)
    {}

    virtual ~ProcessingException()
    {

    }

    void raise() const { throw *this; }
    ProcessingException *clone() const { return new ProcessingException(*this); }

    QString getMessage() const
    {
        return message;
    }
private:
    QString message;
};

从QtConcurrent::run运行的方法中,我使用throw new ProcessingException("test");抛出该子类的实例。然后,如果我正确理解了文档,则当我使用.waitForFinished()收集将来的结果时,Qt应该重新抛出QException子类。但是,使用这种方法,我只能捕获QUnhandledException:
try
{
    watcher->waitForFinished();
}
catch(const ProcessingException &e)
{
    qCritical() << "Caught:" << e.getMessage();
}
catch(const QUnhandledException &e)
{
    qCritical() << "Uncaught qexception!";
}

我想念什么?

最佳答案

您正在抛出一个指针但是却获得了一个引用。

只需使用throw ProcessingException("test");即可。
您可以通过const引用来捕获它,而不必在捕获后进行清理(调用delete)。

相关:throw new std::exception vs throw std::exception

10-08 01:18