gpt4 book ai didi

c++ - 该值被复制而不是被 move 。为什么?

转载 作者:行者123 更新时间:2023-11-30 01:37:00 27 4
gpt4 key购买 nike

为什么这里声明的对象没有被 move ,而是被复制?它与复制省略有某种关系吗?当前代码不应该更改类的对象吗?最初预计通过使用 std::move B 的内部结构会发生变化。我忽略了什么吗?有什么解决方法吗?

#include <iostream>
#include <algorithm>
#include <vector>

class A {
public:
A() {}
auto&& get() { return v; }
friend std::ostream& operator<<(std::ostream& o, A const& a) {
o << "A: ";
for (auto it = std::begin(a.v); it != std::end(a.v); ++it) { if (it != std::begin(a.v)) { o << " "; } o << *it; }
return o;
}
private:
std::vector<int> v;
};

class B {
public:
B() {};
auto&& get() { return v; }
friend std::ostream& operator<<(std::ostream& o, B const& b) {
o << "B: { ";
for (auto it = std::begin(b.v); it != std::end(b.v); ++it) { if (it != std::begin(b.v)) { o << " } { "; } o << *it; }
return o << " }";
}
private:
std::vector<A> v;
};

int main() {
A a, a1, a2; B b;

a.get().insert(a.get().end(), {1, 2, 3, 4});
a1.get().insert(a1.get().end(), {5, 6, 7, 8});
a2.get().insert(a2.get().end(), {9, 10, 11, 12});

std::cout << a << "\n" << a1 << "\n" << a2;
b.get().insert(b.get().end(), {a, a1, a2});
std::cout << "\n" << b << "\n";

a.get().push_back(std::move(b.get()[2].get()[2]));

std::cout << a << "\n" << a1 << "\n" << a2;
std::cout << "\n" << b;
return 0;
}

最佳答案

您在 int 上调用 std::move。对于非类类型,复制和 move 是相同的操作。

关于c++ - 该值被复制而不是被 move 。为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50670416/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com