C++ 当std::bind和std::shared_ptr组合时的坑
摘要:经过测试,bind一个成员函数时,使用智能指针作为参数,会增加改对象智能指针的引用计数 #include <iostream> #include <memory> #include <functional> using namespace std; class Test{ public: using
阅读全文
posted @ 2023-08-01 12:06