自己实现一个智能指针,类比shared_ptr

本文展示了C++中一个简单的智能指针类模板的实现,包括构造函数、拷贝构造函数、运算符重载以及析构函数。智能指针用于自动管理动态分配的对象,确保在不再使用时正确释放内存。示例中,当多个智能指针共享同一个对象时,会通过计数器来跟踪引用计数,防止过早释放内存。
摘要由CSDN通过智能技术生成

包括:

构造函数

拷贝构造函数

运算符重载

析构函数

#include <iostream>
#include <assert.h>

using namespace std;

class Person {
public:

	string m_name;
	int m_age;
	
public:
   
	Person() {
		m_name = "hxx";
		m_age = 24;
		cout << "Person的构造函数" << endl;
	}

	~Person() {
		cout << "Person的析构函数" << endl;
	}
};

template<class T>
class smartPointer {

private:
	T* m_ptr;
	size_t* m_count;

public:
	smartPointer(T* p = nullptr) {
		m_ptr = p;
		if (p == nullptr) {
			m_count = new size_t(0);
		}
		else {
			m_count = new size_t(1);
		}
		cout << "智能指针的构造函数" << endl;
	}

	smartPointer(smartPointer& sp) {
		m_ptr = sp.m_ptr;
		m_count = sp.m_count;
		(*m_count)++;
		cout << "智能指针的拷贝构造函数" << endl;
	}

    T* operator->() {
		assert(m_ptr != nullptr);
		return m_ptr;
    }

	T& operator* () {
		assert(m_ptr != nullptr);
		return *m_ptr;
	}

	smartPointer& operator= (smartPointer& sp) {
		if (m_ptr == sp.m_ptr) return *this;

		(*m_count)--;
		if (m_count == 0)
		{
			delete m_ptr;
			delete m_count;
			cout << "智能指针指向的旧对象已释放" << endl;
		}

		m_count = sp.m_count;
		m_ptr = sp.m_ptr;
		(*m_count)++;
		return *this;

	}

	size_t use_count() {
		return *m_count;
	}

	~smartPointer()
	{
		if (m_ptr == nullptr) {
			delete m_count;
			cout << "智能指针的析构函数:指针为空" << endl;
			return;
		}
		(*m_count)--;
		if (*m_count == 0)
		{
			delete m_ptr;
			delete m_count;
			cout << "智能指针的析构函数:智能指针指向的对象已释放" << endl;
		}
	}
	
};

int main()
{
	smartPointer<Person> sp1(new Person());
	cout << sp1->m_name << endl;
	cout << (*sp1).m_age << endl;
	cout << sp1.use_count() << endl;
	smartPointer<Person> sp2(sp1);
	cout << sp1.use_count() << sp2.use_count() << endl;
	smartPointer<Person> sp3;
	sp3 = sp2;
	cout << sp1.use_count() << sp2.use_count() << sp3.use_count() << endl;
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值