函数指针

Posted osbreak

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了函数指针相关的知识,希望对你有一定的参考价值。

 

void func(void)

//函数指针
void(*func_ptr)(void) = &func; 
func_ptr();

 

struct Foo

    void operator()(void)
    
;
//仿函数
Foo foo;  
foo();

 

struct A

    int a_;
    void mem_func(void)
    
        //...
    
;
void(A::*mem_func_ptr)(void) = &A::mem_func;  //类成员函数指针
int A::*mem_obj_ptr = &A::a_;           //类成员指针

A aa;
(aa.
*mem_func_ptr)(); aa.*mem_obj_ptr = 123;

 

以上是关于函数指针的主要内容,如果未能解决你的问题,请参考以下文章

函数指针和指针函数和回调函数以及函数指针数组

指针数组 数组指针 函数指针 函数指针数组 指向函数指针数组的指针

类函数指针(不涵盖:返回类函数指针)

函数指针(函数指针作为函数形参/函数类型作为函数返回类型)

函数指针和指针函数

指针数组,数组指针,函数指针,main函数实质,二重指针,函数指针作为參数,泛型函数