码迷,mamicode.com
首页 > 其他好文 > 详细

函数指针

时间:2019-01-31 17:41:09      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:oid   pre   system   nbsp   定义   定义函数   class   地址   use   

void f(int a, int b) {
    cout << a + b << endl;
}

int main()
{
    void(*f1)(int a, int b);  // 定义函数指针,它用来指向一个函数。而指针函数指的是返回值是指针的函数
    f1 = f; // 也可以: f1=&f,都一样,都表示地址  
    (*f1)(2, 3); // 通过*来调用函数

    system("pause");
    return 0;
}

 

函数指针

标签:oid   pre   system   nbsp   定义   定义函数   class   地址   use   

原文地址:https://www.cnblogs.com/pjishu/p/10342814.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!