我想弄清楚如何安排一些课程。这就是我到目前为止所得到的......
继承层次结构的顶部(自然)是 T:
(T.h)
namespace foo
{
class T
{
public:
virtual void method1(std::string a_parameter) = 0;
virtual void method2() = 0;
};
}
我有两个 T 子类和一些额外的方法 - 这里是头文件:
(A.h)
namespace foo
{
class A : public T
{
public:
virtual ~A() {};
virtual void method3() = 0;
//and a factory function
static A* gimmeAnAyy();
};
}
(B.h)
namespace foo
{
class B : public T
{
public:
virtual ~B() {};
virtual void method4() = 0;
//and a factory function
static B* gimmeABee();
};
}
实现类位于各自的 .cpp 文件中:
(A.cpp)
namespace foo
{
class AImpl : public A
{
public:
A(std::string member_data) : m_member_data(member_data) {};
~A() {};
void method3()
{
//something really important, can't think of it right now ;-)
};
private:
std::string m_member_data;
};
A* A::gimmeAnAyy()
{
return new AImpl("this is an impl of A");
};
}
(B.cpp)
namespace foo
{
class BImpl : public B
{
public:
B(std::string other_data) : m_other_data(other_data) {};
~B() {};
void method4()
{
//something really important, can't think of it right now ;-)
};
private:
std::string m_other_data;
};
B* B::gimmeABee()
{
return new BImpl("this is an imll of B");
};
}
现在编译器抱怨我没有在 AImpl 和 BImpl 中实现的虚函数 method1() 和 method2() 是正确的。
我想要的是一个 AImpl 和 BImpl 都可以继承的 TImpl 类,这样我就不必在两个不同的 .cpp 文件中实现 method1() 和 method2() 。
可能吗?我出去吃午饭了吗?我是否对 StackExchange 帖子提出了太多反问?
提前致谢,
麦克风