我可以投射函数的指针吗? 此代码报告错误.. 你能救我吗?
#include <iostream>
using namespace std;
typedef float (* MyFuncPtrType) (int, char*);
typedef void* (*p) ();
void* some_func ();
int main(int argc, char** argv)
{
MyFuncPtrType func;
some_func = reinterpret_cast<p>(func);
return 0;
}