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

溫馨提示×

溫馨提示×

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

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

C++中怎么使用async啟動并發任務

發布時間:2021-07-30 16:16:24 來源:億速云 閱讀:141 作者:Leah 欄目:大數據

這期內容當中小編將會給大家帶來有關C++中怎么使用async啟動并發任務,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

Reason(原因)

Similar to R.12, which tells you to avoid raw owning pointers, you should also avoid raw threads and raw promises where possible. Use a factory function such as std::async, which handles spawning or reusing a thread without exposing raw threads to your own code.

R.12告訴我們避免原始的所有權指針,本規則告訴我們:如果可能應該避免原始線程和promise。使用像std::async一樣的工廠函數,它可以可以啟動和重新使用線程而不必向外部代碼保護原始線程。

Example(示例)

int read_value(const std::string& filename)
{
   std::ifstream in(filename);
   in.exceptions(std::ifstream::failbit);
   int value;
   in >> value;
   return value;
}

void async_example()
{
   try {
       std::future<int> f1 = std::async(read_value, "v1.txt");
       std::future<int> f2 = std::async(read_value, "v2.txt");
       std::cout << f1.get() + f2.get() << '\n';
   } catch (const std::ios_base::failure& fail) {
       // handle exception here
   }
}
Note(注意)

Unfortunately, std::async is not perfect. For example, it doesn't use a thread pool, which means that it may fail due to resource exhaustion, rather than queuing up your tasks to be executed later. However, even if you cannot use std::async, you should prefer to write your own future-returning factory function, rather than using raw promises.

不幸的是,std::async并不完美。例如,它沒有使用線程池,這意味著它可能因為資源枯竭而失敗,而不是將任務排隊等候執行。然而,即使你不能使用std::async,你還是可以編寫自己的返回future的工廠函數,而不是使用原始的promise。

Example (bad)(反面示例)

This example shows two different ways to succeed at using std::future, but to fail at avoiding raw std::thread management.

示例代碼演示了兩種不同的成功使用std::future的方式,但是沒能避免使用原始的std::thread。

void async_example()
{
   std::promise<int> p1;
   std::future<int> f1 = p1.get_future();
   std::thread t1([p1 = std::move(p1)]() mutable {
       p1.set_value(read_value("v1.txt"));
   });
   t1.detach(); // evil

   std::packaged_task<int()> pt2(read_value, "v2.txt");
   std::future<int> f2 = pt2.get_future();
   std::thread(std::move(pt2)).detach();

   std::cout << f1.get() + f2.get() << '\n';
}
Example (good)(范例)

This example shows one way you could follow the general pattern set by std::async, in a context where std::async itself was unacceptable for use in production.

示例代碼顯示了你可以遵守的,由std::async設定的通常模式,這種模式可以用于開發過程中std::async無法直接使用的情況。

void async_example(WorkQueue& wq)
{
   std::future<int> f1 = wq.enqueue([]() {
       return read_value("v1.txt");
   });
   std::future<int> f2 = wq.enqueue([]() {
       return read_value("v2.txt");
   });
   std::cout << f1.get() + f2.get() << '\n';
}

Any threads spawned to execute the code of read_value are hidden behind the call to WorkQueue::enqueue. The user code deals only with future objects, never with raw thread, promise, or packaged_task objects.

任何啟動并調用read_value的線程都被隱藏在WorkQueue::enqueue的調用后面。用戶代碼智能處理future對象,永遠不會使用原始線程,promise或者打包的task對象。

上述就是小編為大家分享的C++中怎么使用async啟動并發任務了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

新津县| 鹰潭市| 永州市| 米易县| 高州市| 景洪市| 青冈县| 贵德县| 武义县| 乌兰县| 宣化县| 寿宁县| 茶陵县| 巴中市| 育儿| 和龙市| 禄丰县| 苏尼特左旗| 科技| 兴隆县| 延庆县| 阿勒泰市| 普兰店市| 泉州市| 黄山市| 晋城| 渭源县| 烟台市| 内江市| 峨眉山市| 正安县| 寿宁县| 尉犁县| 开封市| 奈曼旗| 西昌市| 林甸县| 临颍县| 元谋县| 卢龙县| 滨州市|