c++内存管理

这篇博客介绍了C++中的内存管理,重点讲解了new和delete关键字的使用,与C语言中的malloc和free进行对比。示例代码展示了如何动态分配单变量和数组内存,以及如何初始化和释放对象。同时,提到了内存清零的方法和结构体的动态分配。

c++内存管理

new/delete
c语言中提供了malloc和free两个系统函数,完成对堆内存的申请和释放。而c++则提供了两关键字new和delete; new用法:
1、开辟单变量地址空间 int *p = new int; //开辟大小为sizeof(int)空间 int *a = new
int(5);

//malloc free #include <stdio.h> 库函数 //new delete key word 关键字 int
for

//单变量空间

//数组 // 一维 多维

#include <iostream>
#include <stdlib.h>
#include <string.h>
using namespace std;

int main1()
{
	//int *p = (int *)malloc(sizeof(int));
	int *p = new int(200);
	cout << *p << endl;

	string *ps = new string("purple palace");
	//*ps = "china";
	cout << *ps << endl;
	
	struct Stu
	{
		int age;
		string name;
	};
	 
	Stu* pStu = new Stu{10, "bob"};
	cout << pStu->age << endl;
	cout << pStu->name << endl;
	
	return 0;
}

int main()
{
	int* pi = new int[5]{0};
	memset(pi, 0, sizeof(int[5]));  //将指针变量pi所指向的前sizeof(int[5])->(20)字节的内存单元用整数0替换
	for (int i=0; i<5; i++)
	{
		cout << pi[i] << endl;
	}	
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值