我尝试声明thread_local指针变量,然后指向一个线程中的新对象。
thread_local static A* s_a = nullptr;
当线程被破坏时,似乎没有释放新对象的内存。我也尝试使用unique_ptr,但仍然存在内存泄漏。我正在使用VS 2015。
这是代码。在return 0
添加一个断点,检查进程的内存,你会看到内存增加很多。
#include "stdafx.h"
#include <iostream>
#include <thread>
class A
{
public:
A(const std::string& name) : name_(name) { std::cout << (name_ + "::A").c_str() << std::endl; }
~A() { std::cout << (name_ + "::~A").c_str() << std::endl; }
const std::string& name(){ return name_; }
private:
std::string name_;
};
thread_local static std::unique_ptr<A> s_a;
//thread_local static A* s_a = nullptr;
static void test(const std::string& name)
{
//A a(name);
if(!s_a)
s_a.reset(new A(name));
//s_a = new A(name);
}
int main()
{
for (size_t i = 0; i < 10000; i++)
{
{
std::thread t0(test, "t0");
std::thread t1(test, "t1");
t0.join();
t1.join();
}
}
return 0;
}
我的问题是如何使用thread_local以正确的方式声明指针变量?
感谢。
答案 0 :(得分:1)
标准对线程的支持是非常基本的。
Boost的跨平台支持当然是优越的:
// for thread_specific_ptr
#include <boost/thread/tss.hpp>
// define a deleter for As
void destroy_a(A* ptr) noexcept
{
delete ptr;
}
// define the thread_specific pointer with a deleter
boost::thread_specific_ptr<A> s_a { &destroy_a };
static void test(const std::string& name)
{
// create the object in a manner compatible with the deleter
if(!s_a.get())
{
s_a.reset(new A(name));
}
}
答案 1 :(得分:1)
thread_local static std::unique_ptr<A> s_a;
有效。任务管理器中的内存不正确。我用vld来演示内存,没有检测到内存泄漏。