gpt4 book ai didi

基于策略的设计中的 C++ 复制/移动构造函数

转载 作者:太空狗 更新时间:2023-10-29 21:34:34 25 4
gpt4 key购买 nike

<分区>

在 C++ 中探索基于策略的设计模式时,我偶然发现了一个我找不到解决方案的问题:如何以通用方式为基于策略的类编写复制和移动构造函数而不引用策略中的成员变量类(class)?

这是一个例子:

class Foobase {
public:
Foobase(int v) :val(v) { }
protected:
int val;
};

template <typename Base>
class Foo : public Base {
public:
Foo(int v):Base(v) { }
// how can I initialize Base() class without referring to it's protected members?
Foo(const Foo<Base>& other) :Base(other.val) { }
};

int main() {
Foo<Foobase> foo(5);
auto foo2 = foo;
}

在上面的代码中,class Foo 的复制构造函数使用 protected 成员变量来初始化Base 类。除了上述之外,还有其他方法可以初始化 Base 吗?在这种情况下,最佳做法是什么?

更新的问题:

@LogicStuff 的回答澄清了问题的复制构造函数部分,但没有回答移动构造函数问题。请参阅更新的示例代码,其中 class Foo 也可以有成员变量。

class Foobase {
public:
Foobase(int v) :val(v) { }
Foobase(const Foobase&) = default;
Foobase(Foobase&&) noexcept = default;
Foobase& operator= (const Foobase&) = default;
Foobase& operator= (Foobase&&) noexcept = default;
void Print() const {
std::cout << val << std::endl;
}
protected:
int val;
};

template <typename Base>
class Foo : public Base {
public:
// works fine
Foo(std::string str, int v):Base(v), name(str) { }

// works fine
Foo(const Foo<Base>& other) :Base(other), name(other.name) { }

// I'm doubtful about this c'tor, if I move `other` for initializing Base,
// how can I initialize `name` variable?
Foo(Foo<Base>&& other)
:Base(std::move(other)), name(std::move(other.name) /* will this be valid?? */) { }

// can we have copy and assignment operator for this class?

void Print() {
std::cout << "name = " << name << std::endl;
Base::Print();
}

private:
std::string name;
};

int main() {
Foo<Foobase> foo("foo", 5);
auto foo2 = std::move(foo);
foo2.Print();
}

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