gpt4 book ai didi

c++ - 我应该使用函数指针还是多态?

转载 作者:行者123 更新时间:2023-11-30 02:44:58 25 4
gpt4 key购买 nike

我需要将对象传递给类,并根据传递的对象中的值,让类使用两组方法中的一种。在这门课上我不会以任何方式改变 b 。我希望这对用户尽可能透明,以便他们传入对象,然后像往常一样调用方法,所以我试图避免单独管理 Foo1 和 Foo2 类的需要。

例如

class Foo
{
public:
Foo(Bar & b){
useScheme1 = b.a == 1;
}

void methodA(){
// call either A1 or A2
}

void methodB(){
// call either B1 or B2
}

protected:
bool useScheme1 = false;
// methods A1, A2, B1 and B2 defined as protected functions
.
.
.

};

最佳答案

这种功能正是动态多态性的用途!我绝对会建议使用一个非常基本的创建者函数和 Foo + children,像这样:

namespace foo_library {

class Foo
{
public:
virtual void methodA() = 0;

virtual void methodB() = 0;

virtual ~Foo() {}
};

class Foo1 : public Foo
{
virtual void methodA()
{
// Do A1 here.
}

virtual void methodB()
{
// Do B1 here.
}
};

class Foo2 : public Foo
{
virtual void methodA()
{
// Do A2 here.
}

virtual void methodB()
{
// Do B2 here.
}
};

Foo* create_foo(const Bar& b)
{
if(b.a == 1) return new Foo1;

return new Foo2;
}
}

// Then you use it like this:
int main()
{
Bar b; // Initialize it.
std::unique_ptr<foo_library::Foo> foo = foo_library::create_foo(b); // Use the appropriate smart pointer for your ownership needs.
foo->MethodA(); // Decides which to do based on the bar.
}

关于c++ - 我应该使用函数指针还是多态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24872406/

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