我有一个模板化的容器类:
template<class Stuff>
class Bag{
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会被移动还是复制?