2014年10月17日

VC调试小方法

摘要: 1、 设置断点逐步调试。通过Watch、Call Stack窗口查看调试信息。2、 添加调试代码。#ifdef _DEBUG //Code for debugging Purposes#endif //_DEBUG3、 使用宏。ASSERT宏VERIFY宏TRACE宏4、 检查内存泄露。非M... 阅读全文

posted @ 2014-10-17 23:12 Leadtheway 阅读(369) 评论(0) 推荐(0) 编辑

VS2008在release下设置断点调试

摘要: VS2008在release下设置断点调试 设置VS2008的方法步骤。1、 将程序编译模式配置选择为Release。2、 开启Release模式下生成调试信息。项目属性——>Linker——>Debugging——>Generate Debug Info选择为YES3、 选择调试信息... 阅读全文

posted @ 2014-10-17 20:47 Leadtheway 阅读(879) 评论(0) 推荐(0) 编辑

导航