我理解为什么 成员模板函数不能是 virtual,但我不确定最好的解决方法是什么。
我有一些类似的代码:
struct Entity
{
template<typename It>
virtual It GetChildren(It it) { return it; }
};
struct Person : public Entity
{
template<typename It>
virtual It GetChildren(It it) { *it++ = "Joe"; }
};
struct Node : public Entity
{
Node left, right;
const char *GetName() { return "dummy"; }
template<typename It>
virtual It GetChildren(It it)
{
*it++ = left.GetName();
*it++ = right.GetName();
return it;
}
};
显然,我需要动态调度。但鉴于这些类实际上非常大,我不想模板化整个类。而且我仍然想支持任何类型的迭代器。
实现这一目标的最佳方法是什么?