new和delete、malloc和free之间的异同点以及用法实例
// new和delete.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include using namespace std;class Test{public: Test(int _a){ a = _a; cout << "构造函数被执行" << endl; } ~Test(){ cout << "析构函数被执行" <