智能指针weak_ptr(二)-循环引用问题

template<class _Ty>
class RefCnt
{
public:
	_Ty* _Ptr;//指向Obj
	std::atomic_int _User;//对应shared_ptr
	std::atomic_int _Weaks;//对应weak_ptr
public:
	RefCnt(_Ty*p):mptr(p),_User(1),_Weaks(1){}
	~RefCnt(){}
	void _Incref()
	{
		_User += 1;
	}
	void _Incwref()
	{
		_Weaks += 1;
	}
};
template<class _Ty, class _Dx = MyDeletor<_Ty>>
class my_shared_ptr
{
private:
	_Ty* _Ptr;//Object
	RefCnt<_Ty>* _Ref;
	_Dx _mDeletor;
public:
	my_shared_ptr(_TY* p = NULL) :_Ptr(NULL), _Rep(NULL)
	{
		if (p != NULL)
		{
			_Ptr = p;
			_Rep = new RefCnt<_Ty>(p);
		}
	}
};

class Object
{
private:
	int value;
public:
	Object(int x = 0) :value(x)
	{
		cout << "Pbject" << endl;
	}
	void Print()const
	{
		cout << "value:" << value << endl;
	}
};

int main()
{
	my_shared_ptr<Object>op1(new Object(10));
	return 0;
}

对象内存分布图:
在这里插入图片描述
弱引用智能指针图解:
在这里插入图片描述

当为强引用时所引发的问题

class Child;
class Parent
{
public:
	my_shared_ptr<Child> c;
public:
	Parent()
	{
		cout << "Parent" << endl;
	}
	~Parent()
	{
		cout << "~Parent" << endl;
	}
	void hi()const
	{
		cout << "hello parent" << endl;
	}
};
class Child
{
public:
	my_shared_ptr<Parent>p;
	Child()
	{
		cout << "Child" << endl;
	}
	~Child()
	{
		cout << "~Child" << endl;
	}
};
void fun()
{
	my_shared_ptr<Parent>parent(new Parent());
	my_shared_ptr<Child> child(new Child());
	parent->c = child;
	child->p = parent;
	child->p.lock()->hi();
}

图解:
在这里插入图片描述
改为弱引用后

class Child;
class Parent
{
public:
	my_weak_ptr<Child> c;
public:
	Parent()
	{
		cout << "Parent" << endl;
	}
	~Parent()
	{
		cout << "~Parent" << endl;
	}
	void hi()const
	{
		cout << "hello parent" << endl;
	}
};
class Child
{
public:
	my_weak_ptr<Parent>p;
	Child()
	{
		cout << "Child" << endl;
	}
	~Child()
	{
		cout << "~Child" << endl;
	}
};
void fun()
{
	my_shared_ptr<Parent>parent(new Parent());
	my_shared_ptr<Child> child(new Child());
	parent->c = child;
	child->p = parent;
	child->p.lock()->hi();
}

图解:
在这里插入图片描述

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值