几种回调的对比

8 篇文章 0 订阅

C++中实现回调的几种方式
在C++中使用回调函数的几种方式(函数指针)
实现回调机制的几种方式

一、普通回调函数(通过函数指针)

在C++中使用回调函数的几种方式
【本博】C++语法

1、同步回调

#include<stdio.h>

int Callback_1(int x) // Callback Function 1
{
    printf("Hello, this is Callback_1: x = %d ", x);
    return 0;
}

int Callback_2(int x) // Callback Function 2
{
    printf("Hello, this is Callback_2: x = %d ", x);
    return 0;
}

int Callback_3(int x) // Callback Function 3
{
    printf("Hello, this is Callback_3: x = %d ", x);
    return 0;
}

int Handle(int y, int (*Callback)(int))
{
    printf("Entering Handle Function. ");
    Callback(y);
    printf("Leaving Handle Function. ");
}

int main()
{
    int a = 2;
    int b = 4;
    int c = 6;
    printf("Entering Main Function. ");
    Handle(a, Callback_1);
    Handle(b, Callback_2);
    Handle(c, Callback_3);
    printf("Leaving Main Function. ");
    return 0;
}

2、异步回调

#include <future>
#include <iostream>
#include <string>
#include <functional>
 
void func(std::string str)
{
    if (str.compare("Hello World 1") == 0)
    {
        char pause = getchar(); // 按回车显示
    }
    std::cout << str << std::endl;
}
 
void Print(std::function< void(std::string)> Functional)
{
    auto a = std::async(std::launch::async, Functional, "Hello World 1");
    auto b = std::async(std::launch::async, Functional, "Hello World 2");
    auto c = std::async(std::launch::async, Functional, "Hello World 3");
}
 
int main()
{
    Print(func);
    return 0;
}

二、frame中的CCallback回调管理类(通过类指针执行固定的函数onCallback)

(一)实现原理

1、管理类中通过map<数据类型,回调类信息>管理回调信息
2、回调类注册时,将要处理的数据类型,和处理数据的类指针,存入map
3、回调类实现虚函数onCallback(int type, void* pObj)
4、发起回调的类,调用管理类的FireCallback(int type, void *pObj),查询map中type对应的回调类指针,通过指针调用其onCallback实现回调。

(二)特点

1、回调类之间关系,是通过管理类map来找到回调类指针,而发信号是通过一个有交集的类来找到双方指针进行connect交互(或者用单例模式获取)。
2、发起回调是调用管理类的固定函数(FireCallback),执行回调是通过管理类调用回调类的固定函数(onCallback)。

三、node中的回调

四、network中的回调

m_spConnector->SetNewConnectionCallback(bind(&CTcpClient::newConnection,this, _1));
void SetConnectionCallback(const CONNECTION_CALLBACK& cb){m_fnConnectionCallback=cb;}
m_fnConnectionCallback(shared_from_this());

五、frame中的event

六、network中的event

通过一个list保存了函数指针,在run()函数中执行回调

typedef function<void()> EVENT_FUNC;
QList<EVENT_FUNC> m_lstFuncs;
for(int i=0; i<lstFuncs.size();i++)
{
	lstFuncs[i]();
}

七、Qt中的反射

Qt实现反射机制
demo:WorkFlow.7z
帧体类的创建也是应用了反射机制,先是用id注册不同的类型的构造函数,而后根据id调用构造函数创建不同的类(CreateObject)。本质上同通知模式、回调函数类似。

class ObjectFactory
{
public:
  template<typename T>
  static void registerClass()
  {
    constructors().insert(T::staticMetaObject.className(), &constructorHelper<T>);
  }
 
  template<typename T>
  static void registerClass(const QString& name)
  {
      constructors().insert(name, &constructorHelper<T>);
      qDebug() << name <<  constructors().size();
  }
 
  static QObject* createObject( const QString& className, QObject* parent = NULL )
  {
    Constructor constructor = constructors().value( className );
    if ( constructor == NULL )
      return NULL;
    return (*constructor)( parent );
  }
 
private:
  typedef QObject* (*Constructor)( QObject* parent );
 
  template<typename T>
  static QObject* constructorHelper( QObject* parent )
  {
    return new T( parent );
  }
 
  static QHash<QString, Constructor>& constructors()
  {
    static QHash<QString, Constructor> instance;
    return instance;
  }
};

注册:

#define REGISTER_OBJECT(className, name) \
ObjectFactory::registerClass<className>(name); 
 
void RegisterObject::initialize()
{
    REGISTER_OBJECT(SteponeNode, "STEP_ONE")
    REGISTER_OBJECT(StepTowNode, "STEP_TOW")
    REGISTER_OBJECT(StepThreeNode, "STEP_THREE")
}

创建:

QObject *AbstractNodeFactory::create(const QString &name)
{
   QObject *obj = ObjectFactory::createObject(name);
   return  obj;
}
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值