我需要将我的函数作为参数传递,但它应该是模板函数。例如。
template <class rettype, class argtype> rettype test(argtype x)
{
return (rettype)x;
}
我需要使用此函数作为方法的参数。
template <class type,class value> class MyClass
{
// constructors, etc
template <class type,class value> void myFunc(<function should be here with parameters > ) {
rettype result = function(argtype);
}
};
有可能这样做吗?
答案 0 :(得分:1)
为了清楚语言 - 没有任何东西叫做模板函数的指针。有从函数模板实例化的函数的指针。
我认为这就是你要找的东西:
template <class type, class value> struct MyClass
{
template <class rettype, class argtype>
rettype myFunc( rettype (*function)(argtype), argtype v)
{
return function(v);
}
};
这是一个简单的程序及其输出。
#include <iostream>
template <class rettype, class argtype> rettype test(argtype x)
{
return (rettype)x;
}
template <class type,class value> struct MyClass
{
template <class rettype, class argtype>
rettype myFunc( rettype (*function)(argtype), argtype v)
{
return function(v);
}
};
int main()
{
MyClass<int, double> obj;
std::cout << obj.myFunc(test<int, float>, 20.3f) << std::endl;
// ^^^ pointer to a function instantiated
// from the function template.
}
输出
20