在我面临的问题中,我需要一些或多或少类似于多态类的东西,但它允许虚拟模板方法。
关键是,我想创建一个子问题数组,每个子问题都通过在不同类中实现的不同技术解决,但保持相同的接口,然后传递一组参数(它们是函数/函子 - 这就是模板跳转)到所有子问题并获得解决方案。
如果参数是,例如,整数,这将是这样的:
struct subproblem
{
...
virtual void solve (double& solution, double parameter)=0;
}
struct subproblem0: public subproblem
{
...
virtual void solve (double& solution, double parameter){...};
}
struct subproblem1: public subproblem
{
...
virtual void solve (double* solution, double parameter){...};
}
int main{
subproblem problem[2];
subproblem[0] = new subproblem0();
subproblem[1] = new subproblem1();
double argument0(0),
argument1(1),
sol0[2],
sol1[2];
for(unsigned int i(0);i<2;++i)
{
problem[i]->solve( &(sol0[i]) , argument0);
problem[i]->solve( &(sol1[i]) , argument1);
}
return 0;
}
但问题是,我需要像这样的论点
Arg<T1,T2> argument0(f1,f2)
因此解决方法类似于
template<T1,T2> solve (double* solution, Arg<T1,T2> parameter)
显然不能声明为虚拟的(因此不能从指向基类的指针中调用)...
现在我很卡住,不知道如何继续......