摘要:
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... 阅读全文