如何独立地使用Qt平台捕获异常?

时间:2010-12-15 10:51:37

标签: c++ qt exception exception-handling cross-platform

我在我的项目中使用了boost :: date_time。当date无效时,它会使用std :: out_of_range C ++异常。在Windows平台上的Qt的gui应用程序中它变成了SEH异常,所以它没有用try | catch范例和programm死掉。如何独立捕获异常平台?

try{
    std::string ts("9999-99-99 99:99:99.999");
    ptime t(time_from_string(ts))
}
catch(...)
{
    // doesn't work on windows
}

编辑: 如果有人不理解,我写了另一个例子:

Qt专业档案

TEMPLATE = app
DESTDIR  = bin
VERSION  = 1.0.0
CONFIG  += debug_and_release build_all
TARGET = QExceptExample
SOURCES += exceptexample.cpp \
           main.cpp
HEADERS += exceptexample.h

exceptexample.h

#ifndef __EXCEPTEXAMPLE_H__
#define __EXCEPTEXAMPLE_H__

#include <QtGui/QMainWindow>
#include <QtGui/QMessageBox>
#include <QtGui/QPushButton>
#include <stdexcept>

class PushButton;
class QMessageBox;

class ExceptExample : public QMainWindow
{
  Q_OBJECT
  public:
    ExceptExample();
    ~ExceptExample();
  public slots:
    void throwExcept();
  private:
    QPushButton * throwBtn;
};

#endif

exceptexample.cpp

#include "exceptexample.h"

ExceptExample::ExceptExample()
{
  throwBtn = new QPushButton(this);
  connect(throwBtn, SIGNAL(clicked()), this, SLOT(throwExcept()));
}

ExceptExample::~ExceptExample()
{
}

void ExceptExample::throwExcept()
{
  QMessageBox::information(this, "info", "We are in throwExcept()", 
                           QMessageBox::Ok);
  try{
    throw std::out_of_range("ExceptExample");
  }
  catch(...){
    QMessageBox::information(this, "hidden", "Windows users can't see "
                             "this message", QMessageBox::Ok);
  }
}

的main.cpp

#include "exceptexample.h"
#include <QApplication>

int main(int argc, char* argv[])
{
  QApplication app(argc, argv);
  ExceptExample e;
  e.show();
  return app.exec();
}

1 个答案:

答案 0 :(得分:5)

从评论中添加答案:

aschelper写道:

  

你的Qt库是用C ++编译的吗?   启用异常支持?有时   他们不是,这会导致问题。

hoxnox(OP)回答:

  

@aschelper我重新配置了Qt   -exceptions选项。它确定了情况。如果你发布答案   我会把它标记为正确。