我有一个 std:vector,其中 MyClass 无法复制(复制构造函数和赋值构造函数被删除),但可以移动
我想访问 for 循环中的元素,我该怎么做:
for(MyClass c : my_vector) {
//c should be moved out of my_vector
} // after c goes out of scope, it get's destructed (and no copies exist anymore)
我找到了move_iterator但我不知道如何在 for 循环中正确使用它。