我需要將我的函數作爲參數傳遞,但它應該是模板函數。例如。指向模板函數的指針
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);
}
};
是否可以這樣做?
你在哪裏提議從中獲取類型的'數據argtype'? – Yakk 2015-02-24 21:09:50