标题有点混乱。。我也不知道怎么描述好了,希望你们能看懂。。
例如现在有一组原型为同一形式的函数模板,把它们叫做funx()
它们都是T funx(T arg)
的形式,但是函数体不同
// these called funx()
template <class T>
T fun1(T arg)
{ // do something }
template <class T>
T fun2(T arg)
{ // do something }
再设计一个函数,函数实现需要调用 符合以上形式模板 的函数
void do( funx ,/* some arguments */)
{
funx();
// do something
}
因为是函数模板,无法直接传递funa或者funb的函数指针 作为do()的参数
如何设计do()或者修改funx()来符合要求?
PHP中文网2017-04-17 13:35:28
You can implement the function that calls the function in the form of a template: `
template <typename Func>
void do(Func funx, /* other args */) {
funx();
// do something
}
You can call it directly when making a specific call
do(fun1<Type>);
do(fun2<Type>);