我正在尝试设计一个基于策略的类,其中某个接口由策略本身实现,因此该类派生自策略,它本身就是一个模板(我从Alexandrescu的书中得到了这种想法) :
#include <iostream>
#include <vector>
class TestInterface {
public:
virtual void test() = 0;
};
class TestImpl1 {
public:
void test() {std::cerr << "Impl1" << std::endl;}
};
template<class TestPolicy>
class Foo : public TestInterface, TestPolicy {
};
然后,在main()
函数中,我(可能)在所有实现相同接口的各种不同对象上调用test()
:
int main() {
std::vector<TestInterface*> foos;
foos.push_back(new Foo<TestImpl1>());
foos[0]->test();
delete foos[0];
return 0;
}
它不会编译,因为
the following virtual functions are pure within ‘Foo<TestImpl1>’:
virtual void TestInterface::test()
我认为TestInterface::test()
已实施,因为我们来自TestImpl1
?
答案 0 :(得分:6)
为此,策略类需要从接口类继承:
class TestInterface {
public:
virtual void test() = 0;
};
template< class Interface >
class TestImpl1 : public Interface {
public:
void test() {std::cerr << "Impl1" << std::endl;}
};
template<class TestPolicy>
class Foo : public TestPolicy<TestInterface> {
// ...
};
答案 1 :(得分:1)
您也可以尝试使用boost :: mpl方法:
保持TestInterface和TestImpl不变:
#include <boost/mpl/inherit.hpp>
using namespace boost::mpl;
template <class TestPolicy>
class Foo: public inherit2< TestPolicy, inherit2< TestInterface , empty_base >::type >::type
{
...
}
应该有效