标签: c++
在一个大型应用程序中,我正在尝试调试是否存在由于shared_ptr而引起的循环引用?
struct A { boost::shared_ptr<C> anC; }; struct B { boost::shared_ptr<A> anA; }; struct C { boost::shared_ptr<B> anB; };