c++构造和释放指令

1。new delete
1、new 给基本类型申请空间
void test()
{
int *p = NULL;
//p = (int *)calloc(1,sizeof(int));
//p = new int(100);// *p = 100
p = new int;
*p = 100;
cout<<"*p = "<<*p<<endl;//100
delete p;
}
2。new 申请 基本类型数组空间
#include
#include
using namespace std;
void test01()
{
int *arr=NULL;
arr=new int[5]{1,2,3,4,5};

int i=0;
for(i=0;i<5;i++)
{
cout<<arr[i]<<" ";
}
cout<<endl;
delete [] arr;
}
void test02()
{
char *arr =new char[32];
strcpy(arr,“dyinglight”);
cout<<arr<<endl;
delete [] arr;
}

int main(int argc, char *argv[])
{
cout << “Hello World!” << endl;
test02();
return 0;
}
如果申请空间的时候是数组,那么释放的时候delete后面就要加[]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值