91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

敖汉旗| 平山县| 定边县| 黄陵县| 安塞县| 麟游县| 波密县| 德昌县| 淮安市| 阳曲县| 红河县| 石嘴山市| 刚察县| 菏泽市| 安新县| 思茅市| 阳谷县| 琼结县| 敖汉旗| 新昌县| 古田县| 华蓥市| 兰州市| 余江县| 大理市| 阳原县| 西和县| 新疆| 舟山市| 方城县| 安乡县| 陆川县| 临武县| 垣曲县| 达尔| 云南省| 永新县| 元氏县| 肇州县| 博野县| 卫辉市|