std::packaged_task的学习

#ifndef _STUDY_PACKAGED_TASK_H_
#define _STUDY_PACKAGED_TASK_H_

#include <iostream>
#include <thread>
#include <future>
#include <string>

class CStudyPack
{
public:
    CStudyPack(std::string strName, int32_t id) :m_strMyName(strName), m_iMyId(id) {}
    int32_t Initialize(const std::string & strName);
    std::string GetName() { return m_strMyName; }
private:
    std::string m_strMyName;
    int32_t m_iMyId;

};

class CStudyPackManager
{
public:
    int32_t Initialize();


};

#endif 

#include "study_packaged_task.h"
#include <list>

int32_t CStudyPack::Initialize(const std::string& strName)
{
    int32_t iSize = std::atoi(strName.c_str());
    return iSize;
}

//IntPackStruct XXXFunction()
//{
//    IntPackStruct XXXValue;
//    return XXXValue;
//}
int32_t CStudyPackManager::Initialize()
{

    using IntPackStruct = std::pair<int32_t,CStudyPack*>;
    std::list<std::pair<std::future<IntPackStruct>, std::thread>> listThread;

    for (int i = 0;i <100;++i )
    {
        std::string strName = std::to_string(i);
        CStudyPack* pStudy = new CStudyPack(strName,i);

        // 也可以参考std::packaged_task<IntPackStruct()> pkgFunc{XXXFunction};
        std::packaged_task<IntPackStruct()> pkgFunc([=]() {
            return std::make_pair(pStudy->Initialize(strName), pStudy);
            });
        std::future<IntPackStruct> futureVal = pkgFunc.get_future();
        listThread.emplace_back(std::move(futureVal), std::move(pkgFunc));
    }

    while (!listThread.empty())
    {
        auto& Item = listThread.front();
        IntPackStruct resultValue = Item.first.get();
        Item.second.join();
        listThread.pop_front();
        std::cout << "thes result is :" << resultValue.first << std::endl;
    }

    return 1;


}
int main(int argc, char *argv[])
{
    std::unique_ptr<CStudyPackManager> pStudyPackManager = std::make_unique<CStudyPackManager>();
    int iResult = pStudyPackManager->Initialize();
    return iResult;

}

挺好用

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值