2013年6月22日
摘要: 1。valgrind是一个内存检测工具,类似的还有purify,insure++等2。测试文件test.c test.c : main(){ int* a=new int[100]; return 0; } 第一步:gcc -o test test.c 第二步: valgrind --tool=memcheck --leak-check=yes ./test 结果:==3053== Memcheck, a memory error detector==3053== Copyright (C) 2002-2011, and GNU GPL'd, by Ju... 阅读全文
posted @ 2013-06-22 20:19 紫金树下 阅读(279) 评论(0) 推荐(0) 编辑