回调函数的使用方法(类之间的通信)

Posted ljbguanli

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了回调函数的使用方法(类之间的通信)相关的知识,希望对你有一定的参考价值。

// ConsoleApplication3.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <iostream>
#include <functional>
using namespace std;

//1 "方向盘" 类接收外部的操作, 把消息传到 "车" 类中, 车类把消息传入到 "轮子" 类上
//(子类发消息给父类)

//2 "方向盘" 类接收外部的操作, 把消息传入到 "轮子" 类上
//(子类发消息给子类)

//方向盘类
class Steering
{
private:
	function<void(float)> m_steeringAction;
public:
	//设置回调函数
	void setWheelConnectWithCar(function<void(float)> steeringAction)
	{
		m_steeringAction = steeringAction;
	}

	//转动方向盘
	void turn(float angle)
	{
		cout<<"Steering turn "<<angle<<" angle"<<endl;

		m_steeringAction(angle);
	}

};
//轮子类
class  Wheel
{
public:
	//转动轮子方向
	void turn(float angle)
	{
		cout<<"Wheel turn "<<angle<<" angle"<<endl;
	}
};

//车类
class Car
{
public:
	//尽管方向盘在车里, 可是用户能够直接对它进行操作
	Steering m_steering;
	Wheel m_wheel;

	Car()
	{
		setCarConnectWithWheel();
	}
#if 1//1 "方向盘" 类接收外部的操作, 把消息传到 "车" 类中, 车类把消息传入到 "轮子" 类上
	//设置车和方向盘连接的函数
	void setCarConnectWithWheel()
	{
		std::function<void (float)> _fun = std::bind(&Car::steeringAction,this,std::placeholders::_1);
		m_steering.setWheelConnectWithCar(_fun);
	}

	//当转动方向盘时, 会调用该函数, 然后改函数让轮子转动对应的角度
	void steeringAction(float angle)
	{
		m_wheel.turn(angle);
	}
#else//2 "方向盘" 类接收外部的操作, 把消息传入到 "轮子" 类上
	//设置车和方向盘连接的函数
	void setCarConnectWithWheel()
	{
		std::function<void (float)> _fun = std::bind(&Wheel::turn,&m_wheel,std::placeholders::_1);
		m_steering.setWheelConnectWithCar(_fun);
	}
#endif
	

	

};

int _tmain(int argc, _TCHAR* argv[])
{
	Car _car;
	//让方向盘转动30度
	_car.m_steering.turn(30);
	return 0;
}

以上是关于回调函数的使用方法(类之间的通信)的主要内容,如果未能解决你的问题,请参考以下文章

在tablayout片段之间进行通信[重复]

Android 调用组件 w/listener 或让 viewmodel 调用组件与片段通信

Android -- 每日一问:两个 Fragment 之间如何进行通信 ?

使用回调在 python 2 应用程序之间进行通信的最佳方式是啥?

R和Python之间的双向通信

[React] 子组件向父组件通信:回调函数