函数指针,类型是void (*)(void*)void (* func)(void*);void function(void*){}func = &function;func();//equivalent to calling function();
函数指针