在线文档教程
C++
线程支持 | Thread support

std::thread

STD:线程

Defined in header
class thread;(since C++11)

全班thread代表单线程执行%28http://en.wikipara.com/wiki/Thread_%28计算%29%29线程允许并发执行多个函数。

线程在构造关联的线程对象%28时立即开始执行,所有OS调度延迟都会延迟到%29,从顶层函数开始,作为构造参数忽略顶层函数的返回值,如果它通过抛出异常终止,std::terminate叫做。顶层函数可以通过以下方式将其返回值或异常传递给调用方。std::promise或者修改可能需要同步的共享变量%28,请参见std::mutexstd::atomic29%。

std::thread对象也可能处于不表示任何线程%28的状态。detach,或join%29,并且执行线程可能与任何thread对象%28之后detach29%。

不二std::thread对象可以表示相同的执行线程;std::thread不是CopyConstructibleCopyAssignable,尽管它是MoveConstructibleMoveAssignable...

成员类型

Member typeDefinition
native_handle_typeimplementation-defined

成员类

idrepresents the id of a thread (public member class)

成员函数

(constructor)constructs new thread object (public member function)
(destructor)destructs the thread object, underlying thread must be joined or detached (public member function)
operator=moves the thread object (public member function)

观察员

Joinable检查线程是否可连接,即可能在并行上下文%28公共成员函数%29中运行。

弄到[医]ID%28C++11%29返回线程%28公共成员函数%29的id

土生土长[医]句柄返回底层实现定义的线程句柄%28公共成员函数%29

硬件[医]并发性静态返回实现%28公共静态成员函数%29支持的并发线程数。

操作

连接等待线程完成其执行%28公共成员函数%29

Deach允许线程独立于线程句柄%28公共成员函数%29执行。

交换交换两个线程对象%28公共成员函数%29

非会员职能

std::swap(std::thread) (C++11)specializes the std::swap algorithm (function template)

© cppreference.com

在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。

http://en.cppreference.com/w/cpp/线程/线程