In C++ you can pass in "function types", which are like function pointers but they are just the type of the function and not a pointer to it. For example:
template< typename T >
class MyTemplateClass
{
// ...
};
// ... and later...
MyTemplateClass<void (int, int)> mtc;
What is the proper name for this form? Is this a "Function Type"?
Update:
I edited my example to be a little more clear. However, keep in mind the main part of the sample I'm trying to point out is the void (int, int) part.
void(int, int)is a function type that takes twoint's and returns avoid. It's much more common to see:typedef void (&func_vii)(int,int); MyTemplateClass<func_vii localfunc> {...– Mooing Duck Aug 16 '11 at 16:49void(int,int)is the specification of a function type: the type of a function that takes twointarguments and has no return value. In this case, its being used as the argument to a template with a type parameter, presumably declared somewhere astemplate <typename Function> class MyTemplateClass;. – Mike Seymour Aug 16 '11 at 16:53