Format file
This commit is contained in:
parent
f77602f2dd
commit
2657e410aa
@ -12,22 +12,22 @@ using namespace std;
|
|||||||
/**
|
/**
|
||||||
* @brief 定义了一个变量pFun,这个变量是个指针,指向返回值为空和参数为int的函数的指针!
|
* @brief 定义了一个变量pFun,这个变量是个指针,指向返回值为空和参数为int的函数的指针!
|
||||||
*/
|
*/
|
||||||
void (*pFun)(int);
|
void (*pFun)(int);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief 代表一种新类型,不是变量!所以与上述的pFun不一样!
|
* @brief 代表一种新类型,不是变量!所以与上述的pFun不一样!
|
||||||
*/
|
*/
|
||||||
typedef void (*func)(void);
|
typedef void (*func)(void);
|
||||||
|
|
||||||
void myfunc(void)
|
void myfunc(void)
|
||||||
{
|
{
|
||||||
cout<<"asda"<<endl;
|
cout<<"asda"<<endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
void glFun(int a){ cout<<a<<endl;}
|
void glFun(int a){ cout<<a<<endl;}
|
||||||
int main(){
|
int main(){
|
||||||
func pfun = myfunc;/*赋值*/
|
func pfun = myfunc;/*赋值*/
|
||||||
pfun();/*调用*/
|
pfun();/*调用*/
|
||||||
pFun = glFun;
|
pFun = glFun;
|
||||||
(*pFun)(2);
|
(*pFun)(2);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user