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

溫馨提示×

溫馨提示×

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

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

C++11中怎么使用std::thread 實現并發

發布時間:2021-06-15 15:40:28 來源:億速云 閱讀:139 作者:Leah 欄目:編程語言

這篇文章給大家介紹C++11中怎么使用std::thread 實現并發,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

std::thread 構造

default (1)
thread() noexcept;
 
initialization (2)
template <class Fn, class... Args>
explicit thread (Fn&& fn, Args&&... args);
 
copy [deleted] (3)
thread (const thread&) = delete;
 
move (4)
thread (thread&& x) noexcept;
 

(1). 默認構造函數,創建一個空的 thread 執行對象。
(2). 初始化構造函數,創建一個 thread對象,該 thread對象可被 joinable,新產生的線程會調用 fn 函數,該函數的參數由 args 給出。
(3). 拷貝構造函數(被禁用),意味著 thread 不可被拷貝構造。
(4). move 構造函數,move 構造函數,調用成功之后 x 不代表任何 thread 執行對象。

注意:可被 joinable 的 thread 對象必須在他們銷毀之前被主線程 join 或者將其設置為 detached.

std::thread 各種構造函數例子如下(參考):

#include <iostream>
#include <utility>
#include <thread>
#include <chrono>
#include <functional>
#include <atomic>
 
void f1(int n)
{
  for (int i = 0; i < 5; ++i) {
    std::cout << "Thread " << n << " executing\n";
    std::this_thread::sleep_for(std::chrono::milliseconds(10));
  }
}
 
void f2(int& n)
{
  for (int i = 0; i < 5; ++i) {
    std::cout << "Thread 2 executing\n";
    ++n;
    std::this_thread::sleep_for(std::chrono::milliseconds(10));
  }
}
 
int main()
{
  int n = 0;
  std::thread t1; // t1 is not a thread
  std::thread t2(f1, n + 1); // pass by value
  std::thread t3(f2, std::ref(n)); // pass by reference
  std::thread t4(std::move(t3)); // t4 is now running f2(). t3 is no longer a thread
  t2.join();
  t4.join();
  std::cout << "Final value of n is " << n << '\n';
}

move 賦值操作

move (1)
thread& operator= (thread&& rhs) noexcept;
 
copy [deleted] (2)
thread& operator= (const thread&) = delete;
 

(1). move 賦值操作,如果當前對象不可 joinable,需要傳遞一個右值引用(rhs)給 move 賦值操作;如果當前對象可被 joinable,則 terminate() 報錯。
(2). 拷貝賦值操作被禁用,thread 對象不可被拷貝。

請看下面的例子:

#include <stdio.h>
#include <stdlib.h>

#include <chrono>  // std::chrono::seconds
#include <iostream> // std::cout
#include <thread>  // std::thread, std::this_thread::sleep_for

void thread_task(int n) {
  std::this_thread::sleep_for(std::chrono::seconds(n));
  std::cout << "hello thread "
    << std::this_thread::get_id()
    << " paused " << n << " seconds" << std::endl;
}

/*
 * === FUNCTION =========================================================
 *     Name: main
 * Description: program entry routine.
 * ========================================================================
 */
int main(int argc, const char *argv[])
{
  std::thread threads[5];
  std::cout << "Spawning 5 threads...\n";
  for (int i = 0; i < 5; i++) {
    threads[i] = std::thread(thread_task, i + 1);
  }
  std::cout << "Done spawning threads! Now wait for them to join\n";
  for (auto& t: threads) {
    t.join();
  }
  std::cout << "All threads joined.\n";

  return EXIT_SUCCESS;
} /* ---------- end of function main ---------- */

其他成員函數

get_id
獲取線程 ID。

joinable
檢查線程是否可被 join。

join
Join 線程。

detach
Detach 線程

swap
Swap 線程 。

native_handle
返回 native handle。

hardware_concurrency [static]
檢測硬件并發特性。

關于C++11中怎么使用std::thread 實現并發就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

滦平县| 广水市| 富源县| 永兴县| 温宿县| 遂溪县| 灌云县| 济源市| 伽师县| 荣成市| 宜君县| 姜堰市| 瑞丽市| 沁源县| 通城县| 大理市| 哈尔滨市| 南岸区| 金昌市| 隆安县| 灵武市| 崇礼县| 乌兰浩特市| 桓台县| 德兴市| 嘉定区| 海盐县| 铁岭市| 介休市| 甘谷县| 鄄城县| 巴彦县| 日土县| 唐河县| 乌审旗| 马龙县| 普兰店市| 万源市| 克什克腾旗| 班玛县| 遂川县|