Linux上C++怎么开线程调用其他类中的方法

2024年11月16日 03:23
有1个网友回答
网友(1):

有两种方法:a.定义线程函数为全局函数b.定义线程函数为类的静态成员函数针对线程函数为类的静态成员进行说明。如果是静态数据成员,当然可以直接访问,但是如果要访问非静态数据成员,直接访问是做不到的。如果要想在线程函数中访问和操作类的非静态成员变量,可以把线程函数作为一个适配器,在适配器中调用类的非静态成员函数。例如:classCMyClass{public:voidTestFunc();staticintThreadFunc(LPVOIDpParam);//Adapterprotected:intThreadFuncKernal();//Kernal}voidCMyClass::TestFunc(){AfxBeginThread(TreadFunc,this);}//ThreadfunctionAdapterintCMyClass::ThreadFunc(LPVOIDpParam){CMyClass*pObj=(CMyClass*)pParam;returnpObj-ThreadFuncKernal();}//ThreadfunctionkernalintCMyClass::ThreadFuncKernal(){while(1){