C++ 使用回调函数的方式 和 作用。 持续更新

先看两个demo:

一.在类test1中调用函数print() ,把print()的函数指针传递给test1的函数指针参数

test1.h:

#include <stdio.h>
#include <iostream>
using namespace std;

typedef void (*FUNP)();
class test1
{
public:
	void fun1(FUNP p)
	{
		(*p)();
	}
};

main.cpp
#include <stdio.h>
#include "test1.h"

void print();

int main()
{
	test1 tet1;
	tet1.fun1(print);
	getchar();
	return 0;
}

// void (*p)()
void print()
{
	printf("hello world\n");
}
// 打印 “hello world”






二.类Test1 中调用Test2的方法函数。  在类test2中包含test1对象,将test2中的函数指针传给test1

test2.h:

#include "test1.h"

#include <iostream>
using namespace std;

class Test2
{
public:
	Test2()
	{
		tet1.fun1(fun2);
	}
	static void fun2()
	{
		cout<<"Test2"<<endl;
	}
public:
	test1 tet1;
};
test1.h:
#include <stdio.h>
#include <iostream>
using namespace std;

typedef void (*FUNP)();
class test1
{
public:
	void fun1(FUNP p)
	{
		(*p)();
	}
};

main:
#include <stdio.h>
#include "test2.h"
int main()
{
	Test2 tet2; 
	getchar();
	return 0;
}



// 结果:打印“Test2”


附上两个deome,搞清楚的话 回调函数基本可以套着用了

http://download.csdn.net/my






评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值