c++传递函数当作对象传递

匿名 (未验证) 提交于 2019-12-03 00:11:01

c++中函数当作对象来传递,类似c#中的指针操作如:

#include <iostream> using namespace std;  int tst(int a){     cout<<a<<endl;     return 5; }  //类型 +(* +变量名)(+ 函数需要参数) void BigTest(int (* test)(int a)){     int c= test(5); }  int main() {        //传递进来一样的函数     BigTest(tst); }

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!