我用的循环引用尝试boost::shared_ptr
,并制定了以下示例:
class A{ // Trivial class
public:
i32 i;
A(){}
A(i32 a):i(a){}
~A(){
cout<<"~A : "<<i<<endl;
}
};
shared_ptr<A> changeI(shared_ptr<A> s){
s->i++;
cout<<s.use_count()<<'\n';
return s;
}
int main() {
shared_ptr<A> p1 = make_shared<A>(3);
shared_ptr<A> p2 = p1;
shared_ptr<A> p3 = p2;
shared_ptr<A> p4 = p3;
p1 = p4; // 1) 1st cyclic ref.
cout<<p1.use_count()<<'\n';
p1 = changeI(p4); // 2) 2nd cyclic ref.
cout<<p1.use_count()<<'\n';
// putchar('\n');
cout<<endl;
}
其输出
4
5
4
~A : 4
难道是我误解所提到的循环引用boost::shared_ptr
? 因为,我预计间接引用的不同输出思维p1
的意见后, 1)
和2)
所以这个代码不需要boost::weak_ptr
! 那么,什么是在循环引用weak_ptr
s就需要?
提前致谢。