首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C语言 >

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

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

求助 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).
[解决办法]
有内存泄露,检查下!

热点排行