读书人

vc程序中出现这些异常如何解决

发布时间: 2012-04-11 17:42:33 作者: rapoo

求助 vc程序中出现这些错误怎么解决
我运行程序后程序出现了.exe 已停止工作,然后报了一下错误

The thread 0x18E4 has exited with code 0 (0x0).
Detected memory leaks!
Dumping objects ->
{69} client block at 0x0121E858, subtype 0, 168 bytes long.
a CPrintDialog object at $0121E858, 168 bytes long
Object dump complete.
The thread 0x1E58 has exited with code -1073741819 (0xC0000005).


[解决办法]
The thread 0x18E4 has exited with code 0 (0x0).进程已经退出,退出代码为0
下面这段表示内存溢出。debug模式帮你释放内存。
Detected memory leaks!
Dumping objects ->
{69} client block at 0x0121E858, subtype 0, 168 bytes long.
a CPrintDialog object at $0121E858, 168 bytes long
Object dump complete.//释放完毕

The thread 0x1E58 has exited with code -1073741819 (0xC0000005).
[解决办法]
有内存泄露,检查下!

读书人网 >C语言

热点推荐