2014年4月3日
摘要: 测试代码://: C07:TestDelete.cpp// compare the delete and delete[]#includeusing namespace std;class Test { public: Test() { cout << "Construct the class Test" << endl; } public: ~Test() { cout << "Destruct the class Test" << endl; }};int main() { cout << 阅读全文
posted @ 2014-04-03 21:38 loveEach 阅读(123) 评论(0) 推荐(0)