本篇內(nèi)容主要講解“C++中為什么gsl::joining_thread好于std::thread”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“C++中為什么gsl::joining_thread好于std::thread”吧!
成都創(chuàng)新互聯(lián)公司是一家以網(wǎng)站設(shè)計(jì)建設(shè),小程序制作、網(wǎng)站開發(fā)設(shè)計(jì),網(wǎng)絡(luò)軟件產(chǎn)品開發(fā),企業(yè)互聯(lián)網(wǎng)推廣服務(wù)為主的民營(yíng)科技公司。主要業(yè)務(wù)涵蓋:為客戶提供網(wǎng)站策劃、網(wǎng)站設(shè)計(jì)、網(wǎng)站開發(fā)、國(guó)際域名空間、網(wǎng)站優(yōu)化排名、買鏈接等服務(wù)領(lǐng)域。憑借建站老客戶口碑做市場(chǎng),建設(shè)網(wǎng)站時(shí),根據(jù)市場(chǎng)搜索規(guī)律和搜索引擎的排名收錄規(guī)律編程,全力為建站客戶設(shè)計(jì)制作排名好的網(wǎng)站,深受老客戶認(rèn)可和贊譽(yù)。
Reason(原因)
joining_thread是一種在和作用域連結(jié)的線程。分離之后的線程很難監(jiān)控。很難保證分離之后(或者存在潛在的分離可能性)的線程中不存在錯(cuò)誤。
Example, bad(反面示例)
void f() { std::cout << "Hello "; }
struct F {
void operator()() const { std::cout << "parallel world "; }
};
int main()
{
std::thread t1{f}; // f() executes in separate thread
std::thread t2{F()}; // F()() executes in separate thread
} // spot the bugs
void f() { std::cout << "Hello "; }
struct F {
void operator()() const { std::cout << "parallel world "; }
};
int main()
{
std::thread t1{f}; // f() executes in separate thread
std::thread t2{F()}; // F()() executes in separate thread
t1.join();
t2.join();
} // one bad bug left
Make "immortal threads" globals, put them in an enclosing scope, or put them on the free store rather than detach(). Don't detach.
將“永遠(yuǎn)有效的線程"定義為全局的,將它們限制在一個(gè)封閉的作用域,或者將它們放在自由存儲(chǔ)中而不是分離它們。不要分離線程。
Note(注意)
Because of old code and third party libraries using std::thread, this rule can be hard to introduce.
因?yàn)榕f代碼和第三方庫在使用std::thread,本準(zhǔn)則很難推廣。
Enforcement(實(shí)施建議)
Flag uses of std::thread:
標(biāo)記使用std::thread的代碼:
Suggest use of gsl::joining_thread or C++20 std::jthread.
建議使用gsl::joining_thread或者C++20引入的std::jthread.
Suggest "exporting ownership" to an enclosing scope if it detaches.
如果需要分離線程,建議“輸出所有權(quán)”到封閉的作用域。
Warn if it is not obvious whether a thread joins or detaches.
如果不好判斷線程會(huì)連結(jié)還是分離,報(bào)警。
到此,相信大家對(duì)“C++中為什么gsl::joining_thread好于std::thread”有了更深的了解,不妨來實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!