函式
<thread>

std::this_thread::get_id

thread::id get_id() noexcept;
獲取執行緒 ID
返回呼叫執行緒的執行緒 ID

此值唯一標識該執行緒。

引數



返回值

一個型別為 thread::id 的成員物件,用於唯一標識該執行緒。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// thread::get_id / this_thread::get_id
#include <iostream>       // std::cout
#include <thread>         // std::thread, std::thread::id, std::this_thread::get_id
#include <chrono>         // std::chrono::seconds
 
std::thread::id main_thread_id = std::this_thread::get_id();

void is_main_thread() {
  if ( main_thread_id == std::this_thread::get_id() )
    std::cout << "This is the main thread.\n";
  else
    std::cout << "This is not the main thread.\n";
}

int main() 
{
  is_main_thread();
  std::thread th (is_main_thread);
  th.join();
}

輸出
This is the main thread.
This is not the main thread.


異常安全

無異常保證: 絕不丟擲異常。

另見