Threadz 很容易使用 C++ Builder,尤其是。如果您不需要任何 GUI 通讯。我不得不就 GUI 通信的问题向 SO 征求意见 - 需要一个宏来处理消息,并且我提供了错误的表单类 - 我得到了堆栈溢出:)
'classes'中有一个TThread类,类似于Delphi。覆盖“执行”以执行您的线程代码,例如:
class TpoolThread : public TThread{
CBthreadPool *FmyPool;
protected:
virtual void __fastcall Execute(void);
public:
TpoolThread(CBthreadPool *myPool):TThread(true){
FmyPool=myPool;
Resume();
};
};
如果您没有 TThread 类(我有 C++ Builder 2009 - 之前不确定),您可以按照@inkooboo 的建议依赖 API 调用。WINAPI CreateThread() 只会调用简单的 C 风格函数或静态方法,因此您通常需要显式传递一个实例(通常是“this”)作为 CreateThread 参数,以便从线程代码中调用实例方法。使用 CreateThread API 的 ThreadPool 示例,(尽管我确信如果你有 STL,你也会有 TThread):
#ifndef cthreadpoolH
#define cthreadpoolH
#include <Classes.hpp>
#include <deque.h>
class ThreadPool;
class PoolTask {
friend class ThreadPool;
TNotifyEvent FonComplete;
protected:
ThreadPool *myPool;
int param;
public:
PoolTask(int inParam, TNotifyEvent OnDone):param(inParam),FonComplete(OnDone){};
virtual void run()=0;
};
template <typename T> class PCSqueue{
CRITICAL_SECTION access;
deque<T> *objectQueue;
HANDLE queueSema;
public:
PCSqueue(){
objectQueue=new deque<T>;
InitializeCriticalSection(&access);
queueSema=CreateSemaphore(NULL,0,MAXINT,NULL);
};
void push(T ref){
EnterCriticalSection(&access);
objectQueue->push_front(ref);
LeaveCriticalSection(&access);
ReleaseSemaphore(queueSema,1,NULL);
};
bool pop(T *ref,DWORD timeout){
if (WAIT_OBJECT_0==WaitForSingleObject(queueSema,timeout)) {
EnterCriticalSection(&access);
*ref=objectQueue->back();
objectQueue->pop_back();
LeaveCriticalSection(&access);
return(true);
}
else
return(false);
};
};
class ThreadPool {
int FthreadCount;
PCSqueue<PoolTask*> queue;
public:
ThreadPool(int initThreads){
for(FthreadCount=0;FthreadCount!=initThreads;FthreadCount++){
CreateThread(NULL,0,staticThreadRun,this,0,0);
};
}
void setThreadCount(int newCount){
while(FthreadCount<newCount){
CreateThread(NULL,0,staticThreadRun,this,0,0);
FthreadCount++;
};
while(FthreadCount>newCount){
queue.push((PoolTask*)NULL);
FthreadCount--;
};
}
static DWORD _stdcall staticThreadRun(void *param){
ThreadPool *myPool=(ThreadPool*)param;
PoolTask *thisTask;
SetThreadPriority(GetCurrentThread(),THREAD_PRIORITY_BELOW_NORMAL);
while (myPool->queue.pop(&thisTask,INFINITE)){
if(thisTask==NULL){return(0);};
thisTask->run();
if (thisTask->FonComplete!=NULL) {
thisTask->FonComplete((TObject*)thisTask);
}
}
}
void submit(PoolTask *aTask){
aTask->myPool=this;
queue.push(aTask);
};
};
#endif