C++ 指向函数指针

2021-06-19 20:06

阅读:432

标签:info   soscw   属性   结果   div   com   输出   inf   结构体   

刚做了个程序,需要通过调用结构体属性执行函数,百度了一下,豁然开朗。下面是相关代码:

指向无返回值函数:

#include 

typedef void(*voidPointer)();

struct testPointerStruct{
   voidPointer TestPointer; 
};

void hahah();

int main(){
    testPointerStruct testPointerObject;
    testPointerObject.TestPointer=hahah;
    testPointerObject.TestPointer();
}

void hahah(){
    std::cout "测试"  std::endl;
}

输出结果:

技术分享图片

C++ 指向函数指针

标签:info   soscw   属性   结果   div   com   输出   inf   结构体   

原文地址:https://www.cnblogs.com/oinx/p/funcPointer1.html


评论


亲,登录后才可以留言!