代码来源:codeproject 1) 步骤一 #include "ThreadPool.h" 2)步骤二 从IRunObject派生自己的处理类 class CMyRunObject : public IRunObject { public: CMyRunObject(); ~CMyRunObject(); void Run(); void Initialize() { // 初始化 } bool AutoDelete() { // 是否自动删除(线程运行完后,自动删除IRunObject对象 return true; } void Delete