Q_ASSERT - “格式说明符不正确”

时间:2013-09-13 12:15:29

标签: c++ qt

我有Q_ASSERT()

Q_ASSERT(QString("%1").arg(0) != "0");

当它失败时,它会显示一个Abort / Retry / Ignore消息框,但在文中它显示:

File: f:\dd\vctools\crt_bld\self_x86\crt\src\output.c
Line: 1120
Expression: ("Incorrect format specifier", 0)

使用此调用堆栈:

0   _output_s_l output.c    1120    0x5dbee38d  
1   _vsnprintf_helper   vsprintf.c  140 0x5dbb00e8  
2   _vsnprintf_s_l  vsprintf.c  288 0x5dbb0610  
3   _vsnprintf_s    vsprintf.c  340 0x5dbb0880  
4   _VCrtDbgReportA dbgrptt.c   301 0x5dc2571e  
5   _CrtDbgReportV  dbgrpt.c    241 0x5dc24992  
6   _CrtDbgReport   dbgrpt.c    258 0x5dc2494b  
7   qt_message_output   qglobal.cpp 2232    0x5d43bacf  
8   qt_message  qglobal.cpp 2298    0x5d43bc69  
9   qFatal  qglobal.cpp 2481    0x5d43c059  
10  qt_assert   qglobal.cpp 1999    0x5d43b629  

但如果我把它改为:

Q_ASSERT(QString("0").arg(0) != "0");

按预期工作,显示

File: global\qglobal.cpp
Line: 2232

ASSERT: "QString("0").arg(0) != "0"" in file ..\MyProject\tester.cpp, line 132

那么为什么这个奇怪的行为,这是Qt中的一个错误吗?

1 个答案:

答案 0 :(得分:1)

原来是Qt中的一个错误,在qt_message_output他们有这一行:

int ret = _CrtDbgReport(_CRT_ERROR, __FILE__, __LINE__, QT_VERSION_STR, buf);

应该是

int ret = _CrtDbgReport(_CRT_ERROR, __FILE__, __LINE__, QT_VERSION_STR, "%s", buf);

他们将Q_ASSERT()中包含的整行作为格式说明符传递。