这是对我之前的问题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会被移动还是复制?
答案 0 :(得分:1)
如果Bag不支持移动语义,那么就没有适用的移动操作。副本分配/构建将相应地进行。