2015年4月19日

内存泄露 memory leak 的原因

摘要: #include using namespace std;void foo(){ MyClass *x; x = new MyClass(); //指向的丢失了 两种解决方法: return x; delete[] x; x = NULL; return 0;}i... 阅读全文

posted @ 2015-04-19 13:02 雨渐渐 阅读(150) 评论(0) 推荐(0) 编辑

导航