我有一个名为AbsAlgorithm
的类,有三个纯虚函数,如下所示:
class AbsAlgorithm
{
public:
//...other methods
virtual void run() = 0;
virtual bool init(TestCase&) = 0;
virtual void done() = 0;
};
此类位于我的可执行文件中,名为algatorc
。最终用户必须创建algatorc项目,并且还必须实现这三种方法。但问题是:他还必须继承TestCase
类。这是init
方法中的参数。在我的主程序中,我必须编译用户编写的代码,并构建动态库并将其加载到我的程序中。我做到了问题是当我调用init
方法时。
示例:
用户创建名为Sorting
的新algatorc项目。
所以他最终得到了三个班级:
SortingTestSetIterator
SortingTestCase
SortingAbsAlgorithm
在这个SortingAbsAlgorithm
中,他继承了AbsAlgorithm
并实现了纯虚方法。在SortingTestCase
中,他必须继承TestCase
类,并且在SortingTestSetIterator
中,他必须继承TestSetIterator
并实现名为get_current()
的方法,该方法返回TestCase
。
我的主程序我将SortingTestSetIterator
加载到TestSetIterator
,如下所示:
create_it = (TestSetIterator* (*)())dlsym(handle, "create_iterator_object");
TestSetIterator *it = (TestSetIterator*)create_it();
现在,我可以调用TestSetIterator::get_current()
之类的方法(此方法返回指向TestCase
的指针,但用户返回SortingTestCase的对象)。但是当我调用这个方法时,我得到了TestCase
。这一切都没问题,但我需要将其传递给AbsAlgorithm::init(...)
。当然,仍然没有问题,但是当用户实现方法init(...)
时,他必须将其转换为子类(SortingTestCase
)。这可能吗?
我知道这在Java中是微不足道的,但我不知道如何在C ++中这样做。或者这是我定义方法TestCase* TestSetIterator::get_current()
然后用户以某种方式重新定义它以使返回类型为SortingTestCase
的方式?这会解决问题吗?
基本上,问题是:
我有方法SortingTestSetIterator::get_current()
,它返回指向SortingTestCase
类实例的指针。那么,将父母转换为孩子是否有某种意义?
答案 0 :(得分:0)
如果你想将Parent转换为Child,你需要做的就是写下这个:
child = dynamic_cast<Child*>(parent_object)
但是为了这样做,你的源类(Parent类)必须至少有一个虚方法!它几乎肯定需要一个虚拟析构函数,否则当你试图清理它时你会遇到问题...