pro文件添加:
win* {
QMAKE_CXXFLAGS_EXCEPTIONS_ON = /EHa
QMAKE_CXXFLAGS_STL_ON = /EHa
}
CONFIG += exception
文件中使用:
QT_TRY {
int i=0;
int j=10/i;
}QT_CATCH(...){
qDebug()<<"test"<<1;
}
这样就可以接收到异常,并且程序不会崩溃。
1 inline void qt_noop(void) {}
2
3 /* These wrap try/catch so we can switch off exceptions later.
4 Beware - do not use more than one QT_CATCH per QT_TRY, and do not use
5 the exception instance in the catch block.
6 If you can't live with those constraints, don't use these macros.
7 Use the QT_NO_EXCEPTIONS macro to protect your code instead.
8 */
9
10 #ifdef QT_BOOTSTRAPPED
11 # define QT_NO_EXCEPTIONS
12 #endif
13 #if !defined(QT_NO_EXCEPTIONS) && defined(Q_CC_GNU) && !defined (__EXCEPTIONS) && !defined(Q_MOC_RUN)
14 # define QT_NO_EXCE