void f(string str,int i )
{
cout<<str.c_str()<<endl;
cout<<i<<endl;
}
typedef void (*PF)(int i,string str);
int _tmain(int argc, _TCHAR* argv[])
{
PF pf=(PF)(void*)&f;
pf(10,string()); //runtime-error
return 0;
}
Due to some needs, I need to call the function f using the address of f which data type has been erased(such as the code above).But this solution may cause the insecure function call because the data type can't be checked during the compiling. Is there some ways to let the complier to report a error when the the type of parameters are different from arguments'.
somg thing like this:
void f(T1 i,T2 j)
{
T1 p* = new i.real_type; //if i.real_type is different from T1, it will lead a compiling
....
}
I appreciate that very much.
PF pf=(PF)(void*)&f;is broken (implementation-dependent, non-portable) even when the parameter types DO match. See 5.2.10p8. – Ben Voigt Jul 20 '12 at 19:27