标签: c++ c++17 shared-ptr smart-pointers
示例:
{ std::shared_ptr<A> a(new A("First")); std::shared_ptr<A> b(a); }
其中哪些是第一个被删除?