首页 > 代码库 > 函数指针:

函数指针:

声明一个函数指针时,同时也需要提供构造一个函数需要的所有信息——包括函数的返回值和形式参数列表

typedef Int(*double IntFunction)(double);

Double IntFunction fun(ptr);

 

 

void  printfloat(float data)

{

  cout<<"the data to print is:"<<data<<endl;

}

void(* func_ptr)(float)

func_ptr=printfloat;   //给函指针赋值

func_ptr(3.01);    //等价于直接调用printfloat函数

函数指针: