Why does the following code work?
class foo {
public:
template <typename F>
int Map(F function) const {
return function(2);
}
};
int Double(int n) {
return 2*n;
}
int main(){
foo f;
int n = f.Map(Double);
}
My understanding is that the function accepting the function pointer must have format such as:
void foo(int (*ptf)(int))
So the Map function should look like
int Map(int (*ptf)(int)){
return (*ptf)(2);
}
does the it somehow resolve the function at run-time or at compile-time through template? the above code was compiled and ran in vc++ 2010
int operator()(int). Actually, anyfunctionthat allows the expressionreturn function(2);to compile is fair game. Because of this, theMap()function is highly general. – In silico Jun 23 '11 at 22:10