`
standalone
  • 浏览: 617293 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

An Example of Using std::tr1::bind

    博客分类:
  • c++
c++ 
阅读更多
#include <iostream>
#include <tr1/functional> 
using std::tr1::bind;
using std::tr1::function;
using std::tr1::placeholders::_1;
using std::tr1::placeholders::_2;

class CTest
{
        public:
                int test( int a, int b , int c, int d)
                {   
                        return a - b + c*d;
                }   
};
int main()
{
   CTest obj;
   std::tr1::function<int(int, int)> func = bind<int>(&CTest::test, &obj, 3, 3 , _1, _2);
   int c = func(3,4);
   std::cout<< c << std::endl;
   return 0;
}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics