当智能指针 shared_ptr 在类里使用时,他的释放是在析构函数中内容执行完之后。
当使用 shared_ptr 开启了一个线程,这个线程也会在析构函数中内容执行完之后被释放,也就是被delete掉,如果线程尚未 join 的话就会报错,所以要先在析构函数里join线程。
见测试代码。这样管理堆上的线程是不是很优雅?
#include
#include
#include
#include
#include
struct/*class*/ showthread
{
private:
std::atomic m_stop = false;
std::vector> sptharray;
void showmsg(std::string msg) {
while(!m_stop){
std::cout << msg << std::endl;
std::this_thread::sleep_for(std::chrono::milliseconds(200));
}
}
public:
showthread() {
for (int i = 0; i < 10; i ) {
char str[12];
memset(str, '\0', 12); _itoa_s(i,str,10);std::string str_s = str;
std::shared_ptr spth = std::make_shared(&showthread::showmsg, this, str_s);
sptharray.push_back(spth);
}
}
~showthread() {
//调用析构函数时,会先执行析构函数内的内容
m_stop = true;
for (auto it = sptharray.begin(); it != sptharray.end(); it ) {
it->get()->join();
}
//执行完析构函数内容后,会执行释放智能指针的操作
}
};
int main()
{
showthread st;
system("pause");
std::cout << "hello world!\n";
}