普通函数 |
int f( int a, int b ){return a + b;} |
成员函数 |
struct demo{int f( int a, int b ){return a + b;}}; |
成员变量 |
typedef std::pair<int, std::string> pair_t; |
函数对象 |
struct sf{int operator()( int a, int b ){return a + b;}}; |
ref库 | 使用ref库包装对象的引用可以让bind 存储对象引用的拷贝,从而降低了拷贝的代价 变量:int g( int a, int b, int c ){return a + b + c;} int x = 10; boost::bind( g, _1, boost::cref( x ), boost::ref( x ) )( 11 ); 函数对象:struct sf{int operator()( int a, int b ){return a + b;}}; sf af; boost::bind<int>( boost::ref( af ), _1, _2 )( 11, 22 ); |