std::thread::detach

来自cppreference.com
< cpp‎ | thread‎ | thread

 
 
并发支持库
线程
(C++11)
(C++20)
(C++20)
this_thread 命名空间
(C++11)
(C++11)
(C++11)
互斥
(C++11)
(C++11)  
通用锁管理
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
条件变量
(C++11)
信号量
闩与屏障
(C++20)
(C++20)
未来体
(C++11)
(C++11)
(C++11)
(C++11)
安全回收
(C++26)
(C++26)
风险指针





原子类型
(C++11)
(C++20)
原子类型的初始化
(C++11)(C++20 中弃用)
(C++11)(C++20 中弃用)
内存定序
原子操作的自由函数
原子标志的自由函数
 
 
void detach();
(C++11 起)

thread 对象分离执行线程,允许它独立地持续执行。当该线程退出时将释放其分配的任何资源。

调用 detach*this 不再占有任何线程。

参数

(无)

返回值

(无)

后条件

joinablefalse

异常

joinable() == false 或出现任何错误则为 std::system_error

示例

#include <chrono>
#include <iostream>
#include <thread>
 
void independentThread() 
{
    std::cout << "启动并发线程。\n";
    std::this_thread::sleep_for(std::chrono::seconds(2));
    std::cout << "退出并发线程。\n";
}
 
void threadCaller() 
{
    std::cout << "启动线程调用方。\n";
    std::thread t(independentThread);
    t.detach();
    std::this_thread::sleep_for(std::chrono::seconds(1));
    std::cout << "退出线程调用方。\n";
}
 
int main() 
{
    threadCaller();
    std::this_thread::sleep_for(std::chrono::seconds(5));
}

可能的输出:

启动线程调用方。
启动并发线程。
退出线程调用方。
退出并发线程。

引用

  • C++23 标准(ISO/IEC 14882:2024):
  • 33.4.3.6 Members [thread.thread.member]
  • C++20 标准(ISO/IEC 14882:2020):
  • 32.4.2.5 Members [thread.thread.member]
  • C++17 标准(ISO/IEC 14882:2017):
  • 33.3.2.5 thread members [thread.thread.member]
  • C++14 标准(ISO/IEC 14882:2014):
  • 30.3.1.5 thread members [thread.thread.member]
  • C++11 标准(ISO/IEC 14882:2011):
  • 30.3.1.5 thread members [thread.thread.member]

参阅

等待线程完成其执行
(公开成员函数)
检查线程是否可合并,即潜在运行于并行上下文之中
(公开成员函数)