我有一个带有 std::thread 成员的可移动不可复制类。
当类析构函数运行时,我需要做一些清理工作并加入线程。如果该类被移出,我需要析构函数来跳过清理和线程连接。我可以通过存储一个 bool 来实现这一点,但这似乎有点浪费。
如果 std::thread 成员被移出,那么我知道这个类实例被移出。是否可以检查 std::thread 成员是否已移出?
class Widget
{
Widget()
{
// initialize
}
Widget( Widget&& rhs )
{
t = std::move(rhs.t);
}
~Widget()
{
if ( t_is_not_moved_from() )
{
// do cleanup
t.join();
}
}
inline friend void swap( Widget& lhs, Widget& rhs )
{
lhs.t.swap( rhs.t );
}
private:
std::thread t;
// noncopyable
Widget( const Widget& );
const Widget& operator=( const Widget& );
};