摘要:
#include <vector> #include <queue> #include <thread> #include <functional> #include <mutex> using namespace std; class ThreadPool { public: static con 阅读全文
摘要:
#include <iostream> #include <queue> #include <thread> #include <mutex> #include <unistd.h> #include <condition_variable> using namespace std; #define 阅读全文
摘要:
template <typename T> class shared_ptr { private: int* count; // 引用计数,不同shared_ptr指向同一引用计数 T* ptr; // 模板指针ptr,不同shared_ptr指向同一对象 public: // 构造函数 share 阅读全文