boost::bind应用示例
- // testBind.cpp : Defines the entry point for the console application.
- //
- #include "stdafx.h"
- #include <boost/bind.hpp>
- #include <boost/function.hpp>
- #include <assert.h>
- #include <iostream>
- /*
- Title:boost::bind应用示例
- 示例运行环境:
- [1]boost 1.39 SDK
- [2]VisualStudio2008 + SP1
- 示例内容:
- Precondition:MySubClass实例方法 参数方法列表 已知
- Do:控制权从MyParentClass实例方法,转移到,MySubClass实例方法。
- */
- //MyDataType:自定义数据类型
- struct MyDataType{
- MyDataType() {}
- MyDataType(int nV):m_nV(nV) {}
- int m_nV;
- };
- //MyParentClass:框架Class,负责消息派发
- class MyParentClass{
- public:
- boost::function<int(int,MyDataType)> m_fSub;
- int CallSubClassFunc(int nDT,MyDataType mdtDT)
- {
- int nR = m_fSub(nDT,mdtDT);
- return nR;
- }
- };
- //MySubClass:业务逻辑层,负责消息处理
- class MySubClass{
- public:
- int Run(int nDT,MyDataType mdtDT)
- {
- return nDT+mdtDT.m_nV;
- }
- };
- int _tmain(int argc, _TCHAR* argv[])
- {
- MyParentClass mpc;
- MySubClass msc;
- //两种实例方法间,建立联系
- mpc.m_fSub=boost::bind<int>(&MySubClass::Run,msc,_1,_2);
- //触发调用
- int nR=mpc.CallSubClassFunc(2,MyDataType(3));
- assert(nR==5);
- return 0;
- }
http://blog.csdn.net/lee353086/article/details/5269910
boost::bind应用示例的更多相关文章
- boost::bind和boost::function使用示例
C++11已支持bind和function,之前的不支持,但可以借助boost达到同样目的.看如下两段代码: 1) 创建HDFS目录 void hdfs::init() { if (0 == hdfs ...
- 使用BOOST BIND库提高C++程序性能
Boost.Bind为函数和函数对象,值语义和指针提供语义了一致的语法.我们首先通过一些简单的例子来看看它的基本用法,之后我们会延伸到嵌套绑定以实现功能组合.理解bind用法的一个关键是理解占位符(p ...
- Boost::Thread使用示例 - CG-Animation - 博客频道 - CSDN.NET
Boost::Thread使用示例 - CG-Animation - 博客频道 - CSDN.NET Boost::Thread使用示例 分类: C/C++ 2011-07-06 14:48 5926 ...
- boost asio 学习(二)了解boost::bind
2.了解boost::bind使用boost::bind封装一个函数,考虑以下例子示例2a #include <iostream> #include <boost/bind.hpp& ...
- 【转】bind简单示例
bind简单示例代码 namespace { class placeholder_ {}; placeholder_ __1; } template <typename R, typename ...
- boost::bind 详解
使用 boost::bind是标准库函数std::bind1st和std::bind2nd的一种泛化形式.其可以支持函数对象.函数.函数指针.成员函数指针,并且绑定任意参数到某个指定值上或者将输入参数 ...
- 1,Boost -> Bind
#include <boost/bind.hpp> #include <boost/shared_ptr.hpp> #include <iostream> usin ...
- boost::bind
bind并不是一个单独的类或函数,而是非常庞大的家族,依据绑定的参数个数和要绑定的调用对象类型,总共有十个不同的形式,但它们的名字都叫bind. bind接受的第一个参数必须是一个可调用对象f,包括函 ...
- boost::bind 和 boost::function 基本用法
这是一篇介绍bind和function用法的文章,起因是近来读陈硕的文章,提到用bind和function替代继承,于是就熟悉了下bind和function的用法,都是一些网上都有的知识,记录一下,期 ...
随机推荐
- ZOJ 3171 The Hidden 7's DP
传送门:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=3203 题目大意给定一串字符串,需要计算出seven的个数. #incl ...
- 云应用开发之新浪SAE读写云端数据库MySQL
本博文为前篇博文新浪云应用SAE日志查看的延续. 在读写云数据库MySQL之前,须要说明的是,在新浪云平台上使用数据库时.该平台默认会为每个应用单独新建一个数据库database实例.在该实例中再创建 ...
- 【53.57%】【codeforces 722D】Generating Sets
time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...
- python 升级pip
废话少说,直接上图,希望谅解我的懒惰!:)
- [Recompose] Add Local State to a Functional Stateless Component using Recompose
Learn how to use the 'withState' and 'withHandlers' higher order components to easily add local stat ...
- ios开发ios9新特性关键字学习:泛型,逆变,协变,__kindof
一:如何去学习?都去学习什么? 1:学习优秀项目的设计思想,多问几个为什么,为什么要这么设计,这么设计的好处是什么,还能不能在优化 ,如何应用到自己的项目中 2:学习优秀项目的代码风格,代码的封装设计 ...
- vmnet1 and vmnet8
在使用VMware Workstation创建虚拟机时.创建的虚拟机中能够包含网卡.你能够依据须要选择使用何种虚拟网卡.从而表明想要连接到那个虚拟交换机.在VMware Workstation中,默认 ...
- php javascript的ajax
先说基础一点的get类型的ajax function loadXMLDoc() { var xmlhttp;//首先判断浏览器是否支持xmlhttprequest,因为ie56不是这个对象,是acti ...
- php json字符串转为数组或对象
从网上查到的方法是 用get_object_vars 把类类型转换成数组 然后在用foreach 遍历即可 $array = get_object_vars($test); $json= '[{&q ...
- jquery-5 jQuery筛选选择器
jquery-5 jQuery筛选选择器 一.总结 一句话总结:选择器加动态添加方法可以不用想方法名,这个简单方便. 1.筛选选择器有哪三种? 过滤 查找 串联 1.过滤 eq();first(); ...