C++智能指针

1. 为何需要智能指针

1.1 通过例如malloc申请出来的空间,有时候会忘记释放或很难看出来是否正确释放空间了,所以会存在内存泄漏的问题。
1.2 异常安全问题。比如在malloc和free之间存在抛异常,那么还是会有内存泄漏。这种问题就叫异常安全。

2. 智能指针的使用及原理

2.1 RAII

RAII(Resource Acquisition Is Initialization)是一种利用对象生命周期来控制程序资源(如内存、文件句柄、网络连接、互斥量等等)的技术。

在对象构造时获取资源,接着控制对资源的访问使之在对象的生命周期内始终保持有效,最后在对象析构的时候释放资源。借此,实际上把管理一份资源的责任托管给了一个对象。这种做法有两个好处:

  1. 不需要显式地释放资源。
  2. 采用这种方式,对象所需的资源在其生命期内始终保持有效。

Example:

template<typename T>

class SmartPtr {
public:
	SmartPtr(T* ptr = nullptr)
	: _ptr(ptr)
	{}

	 ~SmartPtr(){
	if(_ptr)
	delete _ptr;
	}

private:
	T* _ptr;
};

void MergeSort(int* a, int n){
	int* tmp = (int*)malloc(sizeof(int)*n);
	// 将tmp指针委托给了sp对象
	SmartPtr<int> sp(tmp);
	// _MergeSort(a, 0, n - 1, tmp);


	// 这里假设处理了一些其他逻辑
	vector<int> v(1000000000, 10);
	// ...
}

int main(){
	try {
		int a[5] = { 4, 5, 2, 3, 1 };
		MergeSort(a, 5);
	}
	catch (const exception& e){
		cout << e.what() << endl;
	}
	return 0;
}

2.2 智能指针的原理
上面的SmartPtr还不是智能指针,因为它还不具有指针的功能。指针可以解引用,也可以通过->去访问所指空间中的内容,因此:AutoPtr模板类中还需将“ * ” 、“ -> ”重载,才可让其像指针一样使用。

template<typename T>
class SmartPtr {
public:
	SmartPtr(T* ptr = nullptr)
		: _ptr(ptr)
	{}

	~SmartPtr() {
		if (_ptr)
			delete _ptr;
	}

	T& operator*() { return *_ptr; }
	T* operator->() { return _ptr; }

private:
	T* _ptr;
};

struct Date{
	int _year;
	int _month;
	int _day;
};


int main(){
	SmartPtr<int> sp1(new int);
	*sp1 = 10;
	cout << *sp1 << endl;

	SmartPtr<Date> sparray(new Date);
	// 需要注意的是这里应该是sparray.operator->()->_year = 2018;
	// 本来应该是sparray->->_year这里语法上为了可读性,省略了一个->
	sparray->_year = 2018;
	sparray->_month = 1;
	sparray->_day = 1;

	return 0;
}

总结智能指针的原理:

  1. RAII特性
  2. 重载operator*和opertaor->,使其具有指针一样的功能。

2.3 std::auto_ptr
C++98版本库中提供了auto_ptr的智能指针。下面演示的auto_ptr的使用及问题。

// C++库中的智能指针定义在memory这个头文件中
#include <memory>
class Date{
public:
	Date() { cout << "Date()" << endl; }
	~Date() { cout << "~Date()" << endl; }
	int _year;
	int _month;
	int _day;
};

int main(){
	auto_ptr<Date> ap(new Date);
	auto_ptr<Date> copy(ap);
	// auto_ptr的问题:当对象拷贝或者赋值后,前面的对象就悬空了
	// C++98中设计的auto_ptr问题是非常明显的,所以C++标准委员建议不要使用auto_ptr
	ap->_year = 2018;
	return 0;
}

auto_ptr的实现原理:管理权转移的思想,下面简单模拟实现一份AutoPtr来了解它的原理。

template<typename T>
class AutoPtr{
public:
	AutoPtr(T* ptr = nullptr)
		: _ptr(ptr)
	{}

	~AutoPtr(){
		if (_ptr)
			delete _ptr;
	}

	// 一旦发生拷贝,就将ap中资源转移到当前对象中,然后令ap与其所管理资源断开联系,
	// 这样就解决了一块空间被多个对象使用而造成程序奔溃问题
	AutoPtr(AutoPtr<T>& ap)
		: _ptr(ap._ptr)
	{
		ap._ptr = nullptr;
	}

	AutoPtr<T>& operator=(AutoPtr<T>& ap){
		// 检测是否为自己给自己赋值
		if (this != &ap){
			// 释放当前对象中资源
			if (_ptr) {
				delete _ptr;
			}
			// 转移ap中资源到当前对象中
			_ptr = ap._ptr;
			ap._ptr = nullptr;
		}
		return *this;
	}

	T& operator*() { return *_ptr; }
	T* operator->() { return _ptr; }

private:
	T* _ptr;
};

struct Date{
	int _year;
	int _month;
	int _day;
};

int main(){
	AutoPtr<Date> ap(new Date);
	// 现在再从实现原理层来分析会发现,这里拷贝后把ap对象的指针赋空了,导致ap对象悬空
	// 通过ap对象访问资源时就会出现问题。
	AutoPtr<Date> copy(ap);
	ap->_year = 2018;
	return 0;
}

2.4 std::unique_ptr
C++11中提供了更靠谱的unique_ptr

int main(){
	unique_ptr<Date> ap(new Date);
	// unique_ptr的设计思路非常粗暴-防拷贝,也就是不让拷贝和赋值。
	unique_ptr<Date> copy(ap);
	return 0;
}

unique_ptr实现原理:简单粗暴地防拷贝,下面简单模拟实现了一份UniquePtr了解它的原理。

// 模拟实现一份简单的UniquePtr,了解原理
template<typename T>
class UniquePtr{
public:
	UniquePtr(T * ptr = nullptr)
		: _ptr(ptr)
	{}

	~UniquePtr(){
		if (_ptr) {
			delete _ptr;
		}	
	}

	T& operator*() { return *_ptr; }
	T* operator->() { return _ptr; }
private:
	// C++98防拷贝的方式:只声明不实现+声明成私有
	UniquePtr(UniquePtr<T> const &);
	UniquePtr & operator = (UniquePtr<T> const &);

	// C++11防拷贝的方式:delete
	UniquePtr(UniquePtr<T> const &) = delete;
	UniquePtr & operator = (UniquePtr<T> const &) = delete;
private:
	T * _ptr;
};

struct Date {
	int _year;
	int _month;
	int _day;
};

int main(){
	UniquePtr<Date> ap(new Date);
	ap->_year = 2018;
	// unique_ptr的设计思路非常的粗暴-防拷贝,也就是不让拷贝和赋值。
	UniquePtr<Date> copy(ap);
	UniquePtr<Date> copy;
	copy = ap;
	return 0;
}

2.5 std::shared_ptr
C++11中开始提供更靠谱的并且支持拷贝的shared_ptr

struct Date {
	int _year;
	int _month;
	int _day;
};

int main()
{
	// shared_ptr通过引用计数支持智能指针对象的拷贝
	shared_ptr<Date> sp(new Date);
	shared_ptr<Date> copy(sp);
	cout << "ref count:" << sp.use_count() << endl;
	cout << "ref count:" << copy.use_count() << endl;
	return 0;
}

shared_ptr的原理:通过引用计数的方式来实现多个shared_ptr对象之间共享资源

  1. shared_ptr在其内部,给每个资源都维护了着一份计数,用来记录该份资源被几个对象所共享。
  2. 在对象被销毁时(也就是析构函数调用),就说明该对象不使用该资源了,引用计数减一。
  3. 如果引用计数是0,就说明对象自身是最后一个使用该资源的对象,必须释放该资源;
  4. 如果不是0,就说明除了对象自身外还有其他对象在使用该份资源,不能释放该资源,否则其他对象将变成野指针。
//模拟实现一份简单的SharedPtr,了解原理
#include <iostream>
#include <memory>
#include <thread>
#include <mutex>
using namespace std;
template <class T>

class SharedPtr
{
public:
	SharedPtr(T* ptr = nullptr)
		: _ptr(ptr)
		, _pRefCount(new int(1))
		, _pMutex(new mutex)
	{}

	~SharedPtr() { Release(); }
	
	SharedPtr(const SharedPtr<T>& sp)
		: _ptr(sp._ptr)
		, _pRefCount(sp._pRefCount)
		, _pMutex(sp._pMutex)
	{
		AddRefCount();
	}
	// sp1 = sp2
	SharedPtr<T>& operator=(const SharedPtr<T>& sp){
		//if (this != &sp)
		if (_ptr != sp._ptr){
			// 释放管理的旧资源
			Release();
			// 共享管理新对象的资源,并增加引用计数
			_ptr = sp._ptr;
			_pRefCount = sp._pRefCount;
			_pMutex = sp._pMutex;
			AddRefCount();
		}
		return *this;
	}

	T& operator*() { return *_ptr; }
	T* operator->() { return _ptr; }
	int UseCount() { return *_pRefCount; }
	T* Get() { return _ptr; }

	void AddRefCount(){
		// 加锁或者使用加1的原子操作
		_pMutex->lock();
		++(*_pRefCount);
		_pMutex->unlock();
	}

private:
	void Release(){
		bool deleteflag = false;
		// 引用计数减1,如果减到0,则释放资源
		_pMutex->lock();
		if (--(*_pRefCount) == 0){
			delete _ptr;
			delete _pRefCount;
			deleteflag = true;
		}
		_pMutex->unlock();
		if (deleteflag == true) {
			delete _pMutex;
		}
	}
private:
	int* _pRefCount; // 引用计数
	T* _ptr; // 指向管理资源的指针
	mutex* _pMutex; // 互斥锁
};

int main(){
	SharedPtr<int> sp1(new int(10));
	SharedPtr<int> sp2(sp1);
	*sp2 = 20;
	cout << sp1.UseCount() << endl;
	cout << sp2.UseCount() << endl;
	SharedPtr<int> sp3(new int(10));
	sp2 = sp3;
	cout << sp1.UseCount() << endl;
	cout << sp2.UseCount() << endl;
	cout << sp3.UseCount() << endl;
	sp1 = sp3;
	cout << sp1.UseCount() << endl;
	cout << sp2.UseCount() << endl;
	cout << sp3.UseCount() << endl;
	return 0;
}

std::shared_ptr的线程安全问题
shared_ptr的线程安全分为两方面:

  1. 智能指针对象中引用计数是多个智能指针对象所共享的,两个线程中智能指针的引用计数同时++或–,这个操作非原子性,引用计数原来是1,++了两次,可能还是2.这样引用计数就错乱了。会导致资源未释放或者程序崩溃的问题。所以智能指针中引用计数++、–需要加锁,也就是说引用计数的操作是线程安全的。
  2. 智能指针管理的对象存放在堆上,两个线程中同时去访问,会导致线程安全问题。

std::shared_ptr的循环引用
Example:

struct ListNode{
	int _data;
	shared_ptr<ListNode> _prev;
	shared_ptr<ListNode> _next;
	~ListNode() { cout << "~ListNode()" << endl; }
};
int main(){
	shared_ptr<ListNode> node1(new ListNode);
	shared_ptr<ListNode> node2(new ListNode);
	cout << node1.use_count() << endl;
	cout << node2.use_count() << endl;
	node1->_next = node2;
	node2->_prev = node1;
	cout << node1.use_count() << endl;
	cout << node2.use_count() << endl;
	return 0;
}

循环引用分析:

  1. node1和node2两个智能指针对象指向两个节点,引用计数均为1,我们不需要手动delete。
  2. node1的_next指向node2,node2的_prev指向node1,引用计数变成2。
  3. node1和node2析构,引用计数减到1,但是node1的_next还指向下一个节点,node2的_prev还指向上一个节点。
  4. 也就是说_next析构了,node2就释放了;说_prev析构了,node1就释放了。
  5. 但是_next属于node1的成员,node1释放了,_next才会析构,而node1由_prev管理,_prev属于node2成员,所以这就叫循环引用,谁也不会释放。
    在这里插入图片描述
    解决方案:在引用计数的场景下,把节点中的_prev和_next改成weak_ptr就可以了
// 原理就是,node1->_next = node2;和node2->_prev = node1;时weak_ptr的_next和_prev不会增加node1和node2的引用计数。
struct ListNode{
	int _data;
	weak_ptr<ListNode> _prev;
	weak_ptr<ListNode> _next;
	~ListNode(){ cout << "~ListNode()" << endl; }
};

int main(){
	shared_ptr<ListNode> node1(new ListNode);
	shared_ptr<ListNode> node2(new ListNode);
	cout << node1.use_count() << endl;
	cout << node2.use_count() << endl;
	node1->_next = node2;
	node2->_prev = node1;
	cout << node1.use_count() << endl;
	cout << node2.use_count() << endl;
	return 0; 
}

如果不是new出来的对象如何通过智能指针管理呢?shared_ptr设计了一个删除器来解决这个问题.

// 仿函数的删除器
template<class T>
struct FreeFunc {
	void operator()(T* ptr) {
		cout << "free:" << ptr << endl;
		free(ptr);
 	}
};

template<class T>
struct DeleteArrayFunc {
	void operator()(T* ptr) { 
		cout << "delete[]" << ptr << endl;
		delete[] ptr; 
 	}
};

int main(){
	FreeFunc<int> freeFunc;
	shared_ptr<int> sp1((int*)malloc(4), freeFunc);
	DeleteArrayFunc<int> deleteArrayFunc;
	shared_ptr<int> sp2((int*)malloc(4), deleteArrayFunc);
	return 0;
 }

3. C++11和boost中智能指针的关系

  1. C++ 98 中产生了第一个智能指针auto_ptr.
  2. C++ boost给出了更实用的scoped_ptr和shared_ptr和weak_ptr.
  3. C++ TR1,引入了shared_ptr等。不过注意的是TR1并不是标准版。
  4. C++ 11,引入了unique_ptr和shared_ptr和weak_ptr。需要注意的是unique_ptr对应boost的scoped_ptr。并且这些智能指针的实现原理是参考boost中的实现的。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值