线程池编译错误

Thread Pool compile error

本文关键字:错误 编译 线程      更新时间:2023-10-16

当我尝试用一个任务编译我的线程池时,我得到以下错误:

error: 'void ThreadPool::enqueue(F) [with F =CConnection::handle()::]',使用本地类型声明'CConnection::handle()::',被使用但从未定义(-fpermissive)

下面是线程池声明:
class ThreadPool {
public:
    ThreadPool(size_t);
    template<class F>
    void enqueue(F f);
    ~ThreadPool();
private:
    // need to keep track of threads so we can join them
    std::vector< std::unique_ptr<boost::thread> > workers;
    // the io_service we are wrapping
    boost::asio::io_service service;
    boost::asio::io_service::work working;
    friend class Worker;
};

下面是函数,要用线程池来测试:

void CConnection::handle()
{
     ThreadPool pool(4);
     pool.enqueue([1]
    {
        std::cout << "hello " << 1 << std::endl;
        boost::this_thread::sleep(
            boost::posix_time::milliseconds(1000)
        );
        std::cout << "world " << 1 << std::endl;
    });
     char * databuffer;
     databuffer = new char[16];
     for(int i = 0;i<16;i++)
     {
      databuffer[i] = 0x00;
     }
     databuffer[0] = 16;
     databuffer[4] = 1;
     databuffer[8] = 1;
     databuffer[12] = 1;
     asynchronousSend(databuffer, 16);
}

这里是队列定义:

template<class F>
void ThreadPool::enqueue(F f)
{
    service.post(f);
}

有人能发现我做错了什么吗?

是否在ThreadPool.h头中定义队列?这对于模板方法

是必需的。