C++11已支持bind和function,之前的不支持,但可以借助boost达到同样目的.看如下两段代码: 1) 创建HDFS目录 void hdfs::init() { if (0 == hdfsExists(fs, data_dirpath.c_str())) { LOG(INFO) << data_dirpath << " exists"; } else { if (0 == hdfsCreateDirectory(fs, data_dirpath.c_…
这是一篇介绍bind和function用法的文章,起因是近来读陈硕的文章,提到用bind和function替代继承,于是就熟悉了下bind和function的用法,都是一些网上都有的知识,记录一下,期冀对他人也有用处. 注:本文暂时不探索bind和function的实现和开销. 1. bind 是什么 boost::bind 是std::bindlist 和 std::bind2nd的结合体.它提供一个任意的函数对象(仿函数).函数.函数指针.成员函数指针. 它可以绑定任意的参数.bind 没有…
class TestCoro { ... typedef boost::coroutines::coroutione<void ()> Coro; void CoroFun(Coro::caller_type & ca); Coro m_coro; }; TestCoro::TestCoro() {     m_coro = Coro(boost::bind(&TestCoro::CoroFun, this, _1)); }   可以在VC下编译通过.Gcc报错.需要改成 Te…
boost::function和boost::bind结合使用是非常强大的,他可以将成员函数和非成员函数绑定对一个对象上,实现了类似C#的委托机制.委托在许多时候可以替代C++里面的继承,实现对象解耦,简单说就是把产生事件的代码和处理事件的代码通过委托者给隔离开来. 但是boost库是非常庞大的,尤其是在发布开源软件时,下载安装boost是一件让用户望而却步的事情.基于此,下面编程模拟boost::function和boost::bind. 为了满足90%以上的应用场合,该代码实现以下目标: 1…
#include <boost/bind.hpp> #include <boost/shared_ptr.hpp> #include <iostream> using namespace std; void dprint(int x,int y) { cout << x << " " <<y <<endl; } class Bind_test { public: void setData(int x,i…
直接代码: 代码段1: #include <iostream> #include <string> #include <boost/bind/bind.hpp> class some_class { public: typedef void result_type; void print_string(const std::string& s) const { std::cout << s << '\n'; } }; void print…
bind - boost 头文件: boost/bind.hpp bind 是一组重载的函数模板.用来向一个函数(或函数对象)绑定某些参数. bind的返回值是一个函数对象. 它的源文件太长了. 看不下去. 这里只记下它的用法: 9.1 对于普通函数 假如有函数 fun() 如下:  void fun(int x, int y) {  cout << x << ", " << y << endl; }现在我们看看怎么用 bind 向其绑定…
bind - boost 头文件: boost/bind.hpp bind 是一组重载的函数模板.用来向一个函数(或函数对象)绑定某些参数. bind的返回值是一个函数对象. 它的源文件太长了. 看不下去. 这里只记下它的用法: 9.1 对于普通函数 假如有函数 fun() 如下:  void fun(int x, int y) {  cout << x << ", " << y << endl; }现在我们看看怎么用bind 向其绑定参…
2.了解boost::bind使用boost::bind封装一个函数,考虑以下例子示例2a #include <iostream> #include <boost/bind.hpp> void F1() { std::cout << __FUNCTION__ << std::endl; } int main( int argc, char * argv[] ) { boost::bind( &F1 ); return 0; } 运行代码无输出,这是因…
    普通函数 int f( int a, int b ){return a + b;}boost::bind( f, _1, 9 )( 1 ) 成员函数 struct demo{int f( int a, int b ){return a + b;}};demo a, &ra=a;demo *p = &a;boost::bind( &demo::f, a, _1, 20 )( 10 ) 成员变量 typedef std::pair<int, std::string>…