VS2010 C++ 学习笔记(五) 析构函数 深拷贝浅拷贝 小练习

1.析构函数

~类名()

~Student()





**********************************************************************************************


***************************************************************************************


***************************************************************************************



***************************************************************************************

析构函数代码演示 点击打开链接

http://www.imooc.com/video/7639


***************************************************************************************


***************************************************************************************

***************************************************************************************

 2.深拷贝浅拷贝









上述为浅拷贝。如下图,arr1和arr2 的m_pArr所指向同一块内存地址。
比如,arr1给这段内存写了数据,当调用arr2时,把arr1写的内容,覆盖掉。最严重的是,当我们arr1内存使用完,销毁时。调用arr2时,再次销毁。内存error。计算机可能会崩溃。



***************************************************************************************

深拷贝 

深拷贝  将所需的内存也进行拷贝,如下图所示。




***************************************************************************************



/************************************************************************/
/* 定义一个Student类,
包含
	名字一个数据成员,
定义
	无参构造函数、
	有参构造函数、
	拷贝构造函数、
	析构函数
	及对于名字的封装函数
在main函数中实例化Student对象,并访问相关函数,观察运行结果。                                                                     */
/************************************************************************/

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

class Student
{
public:
	Student();//无参构造函数
	Student(string name);//有参构造函数
	Student(const Student &stu);//拷贝构造函数
	~Student();//析构函数
	string getName();//对于名字的封装函数
	void setName(string name);
private:
	string m_strName;
};

Student::Student()
{
	m_strName = "";
	cout << "Student();//无参构造函数" << endl;
}
Student::Student(string name):m_strName(name)
{
	cout << "Student(string name);//有参构造函数" << endl;
}
Student::Student(const Student &stu)
{
	cout << "Student(const Student &stu);//拷贝构造函数" << endl;
}

Student::~Student()
{
	cout << "~Student();//析构函数" << endl;
}

string Student::getName()
{
	return m_strName;
}
void Student::setName(string name)
{
	m_strName = name;
}

int main(void)
{
	Student *stu1 = new Student;
	Student stu2;
	Student stu3 = stu2;
	Student stu4(stu2);
	stu1->setName("maichel");

	cout << stu1->getName() << endl;

	delete stu1;
	stu1 = NULL;
	system("pause");
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值