1

我有一个带有 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& );
};
4

1 回答 1

4

与大多数标准库对象不同,std::thread的移动构造函数确实明确规定了从移动的状态thread。它相当于一个空线程:thread.joinablewill be false.

于 2013-04-21T06:01:45.800 回答