C++ Boost signal2信号/插槽

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include "stdafx.h"
#include "boost/signals2.hpp"
#include "boost/bind.hpp"
#include "boost/function.hpp"
#include <iostream>
 
using namespace std;
class Button{
private:
typedef boost::signals2::signal<void(int,int)> singalDef;
typedef singalDef::slot_type slotType;
private:
//信号
singalDef m_singal;
 
boost::signals2::connection m_connect;
public:
//信号的绑定函数
boost::signals2::connection Connect(const slotType& slot){
return m_singal.connect(slot);
}
//信号的发射
void SendSignal(int x,int y){
m_singal(x,y);
}
};
 
//对button的信号进行处理
class ButtonPro{
public:
ButtonPro(Button* button):m_button(button){
//绑定信号和槽
m_button->Connect(boost::bind(&ButtonPro::slotButton,this,_1,_2));
}
//槽函数
void slotButton(int x,int y){
cout<<"输出:"<<x<<", "<<y<<endl;
}
private:
Button* m_button;
};
 
int _tmain(int argc, _TCHAR* argv[])
{
Button* pb = new Button();
ButtonPro bp(pb);
//发出一个信号
pb->SendSignal(1,2);
delete pb;
return 0;
}

  

posted @   `野百合的春天  阅读(1501)  评论(0编辑  收藏  举报
编辑推荐:
· .NET 原生驾驭 AI 新基建实战系列:向量数据库的应用与畅想
· 从问题排查到源码分析:ActiveMQ消费端频繁日志刷屏的秘密
· 一次Java后端服务间歇性响应慢的问题排查记录
· dotnet 源代码生成器分析器入门
· ASP.NET Core 模型验证消息的本地化新姿势
阅读排行:
· ThreeJs-16智慧城市项目(重磅以及未来发展ai)
· .NET 原生驾驭 AI 新基建实战系列(一):向量数据库的应用与畅想
· Ai满嘴顺口溜,想考研?浪费我几个小时
· Browser-use 详细介绍&使用文档
· 软件产品开发中常见的10个问题及处理方法
点击右上角即可分享
微信分享提示