Thread :: hardware_concurrency是C++ std :: thread中的内置函数。这是一个观察者函数,表示它观察一个状态,然后返回相应的输出。此函数返回可用硬件实现支持的并发线程数。此值可能并不总是准确的。
句法:
thread::hardware_concurrency()
参数:该函数不接受任何参数。
返回值:返回一个非负整数,表示系统支持的并发线程数。如果该值不可计算或定义不正确,则返回0。
下面的程序演示了std :: thread :: joinable()的用法
注意:在在线IDE上,此程序将显示错误。要对此进行编译,请在命令“ g ++ –std = C++ 14 -pthread file.cpp ”的帮助下对g ++编译器使用标志“ -pthread”。
// C++ program to demonstrate the use of
// std::thread::hardware_concurrency()
#include
#include
#include
using namespace std;
int main()
{
unsigned int con_threads;
// calculating number of concurrent threads
// supported in the hardware implementation
con_threads = thread::hardware_concurrency();
cout << "Number of concurrent threads supported are: "
<< con_threads << endl;
return 0;
}
可能的输出
Number of concurrent threads supported are: 4
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。