一级二级指针new、delete、malloc、free

本文通过C++模板函数展示了如何使用new、delete、malloc和free进行动态内存分配和释放,包括一维和二维数组的情况。在main函数中,分别演示了对一级指针和二级指针的动态分配与释放过程。
摘要由CSDN通过智能技术生成
#include <iostream>
using namespace std;
template <class T>
bool Make1DArray(T *&x,int num)
{
	x=new int [num];
	if (NULL!=x)
	{
		return true;
	}
	return false;
}
template <class T>
void Delete1DArray(T *&x)
{
	if (NULL==x)
	{
		return;
	}
	delete []x;
	x=NULL;
}
template <class T>
bool Make2DArray(T **x,int rows,int cols)
{
	x=new T*[rows];
	for (int i=0;i<rows;i++)
	{
		x[i]=new T[cols];
	}
	return true;
}
template <class T>
void Delete2DArray(T **x,int cols)
{
	if (NULL==x)
	{
		return;
	}
	for (int i=0;i<cols;i++)
	{
		delete[]x[i];
	}
	delete []x;
	x=NULL;
}
template <class T>
bool Malloc1DArray(T *x,int num)
{
	x=(T *)malloc(sizeof(T)*num);
	if (x!=NULL)
	{
		return true;
	}
	return false;
}
template <class T>
void Free1DArray(T *x)
{
	if (NULL==x)
	{
		return;
	}
	free((void *)x);
	x=NULL;
}
template <clas
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值