1. 程式人生 > >c++中用malloc分配與用new分配以及建構函式與建構函式的執行

c++中用malloc分配與用new分配以及建構函式與建構函式的執行

#include <stdio.h>
#include <string.h>
#include <malloc.h>

class USER
{
public:
	USER()
	{
		printf("construct user\n");
	}
	~USER()
	{
		printf("destory user\n");
	}
	int i;
};


int main(int argc, char* argv[])
{
	//用malloc分配,建構函式沒有執行
	USER *u1=(USER*)malloc(sizeof(USER));
	free(u1); //沒有呼叫解構函式
//  delete u1; //呼叫了一次解構函式
//	delete [] u1; //用delete[]釋放沒有用new[]建立的物件,將會出錯


	//用new分配,建構函式得到執行
//	USER *u2=new USER;
//	free(u2); //沒有呼叫解構函式
//	delete u2; //呼叫了一次解構函式
//	delete [] u2; //用delete[]釋放沒有用new[]建立的物件,將會出錯



//	//用new[]分配,[]中有多少個就執行多少次建構函式
//	USER *u3=new USER[3];
//	u3[0].i=1;
//	u3[1].i=2;
//	u3[2].i=3;



//	free(u3-1); //釋放出錯
//	delete u3; //釋放出錯
//	delete [] u3; //用delete[]釋放沒有用new[]建立的物件,將會出錯

	return 0;
}