一、 包含内容
1 class thread
线程类
2 namesapce this_thread
this_thread命名空间
二、线程类详解
1 成员类型
(1)native_handle_type
类型
native_handle_type
是定义在线程类中的私有类型,用来维护线程在不同操作系统下的句柄值/线程id值。
(2)class id
id类型
class id
是定义在线程类中的私有类型,用来维护一个native_handle_type
类型的私有成员变量。
1 成员变量
native_handle_type _M_thread;
2 构造函数
id() noexcept;
默认构造函数
explicit id(native_handle_type __id) : _M_thread(__id) { }
初始化表构造函数
3 操作符重载函数
bool operator== (thread::id lhs, thread::id rhs) noexcept;
bool operator!= (thread::id lhs, thread::id rhs) noexcept;
bool operator< (thread::id lhs, thread::id rhs) noexcept;
bool operator<= (thread::id lhs, thread::id rhs) noexcept;
bool operator> (thread::id lhs, thread::id rhs) noexcept;
bool operator>= (thread::id lhs, thread::id rhs) noexcept;
操作符重载函数主要提供了thread::id
的比较操作,并返回一个bool
值。
template <class charT, class traits>
basic_ostream<chasrT, traits>& operator<< (basic_ostream<charT,traits>& os, thread::id id);
流操作符可以将一个id
以文本的形式输出到标准的输出流中。
3 结论
class id
作为class thread
的私有成员函数被封装在线程类中,因此在调用线程类的过程中不需要使用者对id
类的接口进行了解,因此对改类的功能做基本了解即可。
2 成员函数
1 构造函数
1 种类
thread() noexcept = default;
//默认构造函数
thread(thread&) = delete;
//拷贝构造函数被禁用
thread(thread&& __t) noexcept;
//移动构造函数可以使用