没有编译器定义的移动构造函数的容器中需要显式移动构造函数吗?

时间:2017-06-15 19:40:56

标签: c++ c++11 move-semantics

这是对我之前的问题Explicit move constructor needed in container?的修改。

我有一个模板化的容器类:

template<class Stuff>
class Bag{
     public: 
        ~Bag() {//Do some stuff here so that the compiler doesn't implement move semantics}
     private:
        std::vector<Stuff> mData;
 };

我想做

void InPlace(Bag<Array>& Left){
  Bag<Array> temp;
  Transform(Left, temp); //fills temp with desirable output
  Left = std::move(temp);
}

假设Array具有用户定义的移动语义,但Bag没有。在这种情况下,mData会被移动还是复制?

1 个答案:

答案 0 :(得分:1)

如果Bag不支持移动语义,那么就没有适用的移动操作。副本分配/构建将相应地进行。