我有这段C ++代码:
static CString timeout(_T("TIMEOUT"));
if(strError.Left(7).CompareNoCase(timeout) == 0) return TRUE;
在即时窗口中,我看到strError
的以下值:
? strError
L""
ATL::CSimpleStringT<wchar_t,1>: L""
我遇到以下异常(正在调试故障转储):
Unhandled exception at 0x74B4A9F2 in CRASH.DMP: Microsoft C++ exception:
COleException at memory location 0x01BFFD14. occurred
我的调用堆栈如下:
KERNELBASE.dll!_RaiseException@16() Unknown
msvcr110.dll!_CxxThrowException(void * pExceptionObject, const _s__ThrowInfo * pThrowInfo) Line 152 C++
mfc110u.dll!AfxThrowOleException(long) Unknown
mfc110u.dll!ATL::AtlThrowImpl(long) Unknown
mfc110u.dll!ATL::CStringT<wchar_t,class StrTraitMFC_DLL<wchar_t,class ATL::ChTraitsCRT<wchar_t> > >::CompareNoCase(wchar_t const *) Unknown
> <Application>.exe!<Own_Class>::<Own_Function>(const ATL::CStringT<wchar_t,StrTraitMFC_DLL<wchar_t,ATL::ChTraitsCRT<wchar_t> > > & strError) Line 106 C++
当我在检查.Left(7)
的空字符串时发生崩溃时,我立即认为这是问题的出路。但是,我已经意识到这段代码通常可以正常工作(我只是仔细检查了一下),再看一看,我看到该异常不是访问冲突或nullpointerexception而是Ole相关异常。同时,我了解到问题不在strError.Left(7)
部分之内:似乎是CompareNoCase()
方法,出了错,但是怎么了?
任何人都可以启发我代码中的错误吗?
就strError
而言,它的创建过程如下:
CString strError;
...
strError = <function>();
其中<function>()
类似于:
CString <function>(){
...
return _T("fix string"); // or:
return <Complicated_function_handling>();
在这种情况下,我不知道strError
是如何创建的(我知道它是空的,从立即窗口中可以清楚地看到,但是我只有崩溃转储,因此我可以读取当前值,但我不知道他们的历史。
可能有帮助的一件事:我询问了strError
的内存地址,并且查看了内存中的数据(使用Visual Studio内存调试窗口),并且得到了以下数据:
5c 18 9c 71 38 d9 ca 00 03 00 00 00 cc 3d c2 00 70 fe bf 01 94 13 b3 00 39 00 00 00 80 fe bf 01 be 58 aa 00 b0 3d c2 00 10 0c cd 00 44 03 00 00 01 00 00 00 d3 5f ac 00 8a 40 1d 72 8e f2 d6 73
预先感谢
答案 0 :(得分:0)
通过MFC的源代码工作,由于timeOut
是NULL字符串而引发了异常。可能发生这种情况的常见方式是尚未构建或已被破坏。存储在COleException
中的错误代码是E_FAIL
。
呼叫顺序如下:
CompareNoCase
调用AtlIsValidString
(如果将timeOut
转换为const char *
时为NULL,则在您的情况下将返回false)。AtlIsValidString
返回false,因此与ATLENSURE
宏调用AtlThrow(E_FAIL)
相关联的代码(AtlThrow
是定义为ATL::AtlThrowImpl
的宏。AtlThrowImpl
调用AfxThrowOleException
,因为错误代码不是E_OUTOFMEMORY
。