标签: c++ multithreading oop heap-memory
是否可以使用“ new”关键字在堆上初始化std::thread?
std::thread
答案 0 :(得分:1)
不要使用新的,请使用make_unique
make_unique
此行的内容:
#include<thread> #include<memory> bool fun1() { return true; } int main() { auto thread1 = std::make_unique<std::thread>( fun1 ); thread1->join(); }