摘要: 对于c++的内存泄露检测,除了我们自己手动检查以外,还可以使用c++中的函数来帮助我们检测, 如下代码: #include "stdafx.h" #include #include #include using namespace std; int main() { char *p=new char[10]; //char *pp=new char[100]; ... 阅读全文
posted @ 2015-10-14 17:44 WQZ321123 阅读(184) 评论(0) 推荐(0) 编辑