中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

boost thread 類應用以及資源耗盡異常

發布時間:2020-07-20 10:41:59 來源:網絡 閱讀:1066 作者:fengyuzaitu 欄目:系統運維

1測試例子

#include <iostream>

#include <string>

#include <boost/thread/thread.hpp>


void ThreadFunc()

{

std::cout << "Welcome to thread function" << std::endl;

}

int main(int argc, char* argv[])

{

boost::thread instance(&ThreadFunc);

instance.join();

return 0;

}


2 攜帶參數例子

#include <boost/thread/thread.hpp>

#include <boost/bind.hpp>

#include <iostream>


void threadFunc(const char* pszContext)

{

std::cout << pszContext << std::endl;

}


int main(int argc, char* argv[])

{

char* pszContext = "fengyuzaitu@126.com";

boost::thread thread1(boost::bind(&threadFunc, pszContext));

thread1.join();

return 0;

}


3 類的非靜態函數作為線程函數

生產環境中經常需要訪問類的私有成員,如果類的靜態函數作為線程函數,通過參數的方式傳遞極其不方便

#include <iostream>

#include <string>

#include <boost/thread/thread.hpp>

#include <boost/function/function0.hpp>


class CThreadClass

{

public:


CThreadClass()

{

memset(m_szContext, 0x00, 1024);

}


void ThreadFunc()

{

std::cout << m_szContext << std::endl;

}


void StartThread()

{

strcpy_s(m_szContext, "Welcome to thread func\n");

boost::function0<void> f = boost::bind(&CThreadClass::ThreadFunc, this);

boost::thread thrd(f);

thrd.join();

}


private:


char m_szContext[1024];

};

int main(int argc, char* argv[])

{

CThreadClass instance;

instance.StartThread();

return 0;

}


4 創建線程過多,導致boost庫異常拋出,耗盡資源

查看boost::system::system_error = {m_error_code={m_val=11 m_cat=0x02d848f4 {CMMS-test.exe!boost::system::`anonymous-namespace'::generic_error_category generic_category_const} {...} } ...}

boost::throw_exception<boost::thread_resource_error>(const boost::thread_resource_error & e) 行 69?C++

boost::thread::start_thread() 行 180?C++

目前通過代碼測試生成1274個線程,實際上這是需要根據線程函數的實質內容決定的,在編碼中必須指定上限,否則會引起程序異常崩潰


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

锦屏县| 彭阳县| 罗田县| 炎陵县| 梧州市| 莱芜市| 当涂县| 永兴县| 阳城县| 东乡族自治县| 怀化市| 汪清县| 武威市| 奉新县| 富蕴县| 抚远县| 外汇| 青阳县| 青神县| 游戏| 普兰店市| 泰宁县| 固原市| 吴堡县| 霍城县| 安国市| 九龙城区| 屏东县| 焉耆| 桦川县| 长丰县| 石台县| 佛学| 黑水县| 霍山县| 离岛区| 兴山县| 新巴尔虎右旗| 房产| 灌阳县| 新和县|