- 论坛徽章:
- 0
|
已解决- template<class T,class Arg1>
- class Operation1
- {
- typedef void (T::*F)(Arg1);
- public:
- Operation1(F f,boost::shared_ptr<T>& sptT):f_(f),wpt_T_(sptT)
- {
- boost::bind(&Operation1::operator(), this,_1);
- }
- void operator()(Arg1 arg1)
- {
- boost::shared_ptr<T> spt_T = wpt_T_.lock();
- if(spt_T)
- {
- T* p = spt_T.get();
- (p->*f_)(arg1);
- }
- }
- private:
- F f_;
- boost::weak_ptr<T> wpt_T_;
- };
- template<class T,class Arg1,class Arg2>
- class Operation2
- {
- typedef void (T::*F)(Arg1,Arg2);
- public:
- Operation2(F f,boost::shared_ptr<T>& sptT):f_(f),wpt_T_(sptT)
- {
- boost::bind(&Operation2::operator(), this,_1,_2);
- }
- void operator()(Arg1 arg1,Arg2 arg2)
- {
- boost::shared_ptr<T> spt_T = wpt_T_.lock();
- if(spt_T)
- {
- T* p = spt_T.get();
- (p->*f_)(arg1,arg2);
- }
- }
- private:
- F f_;
- boost::weak_ptr<T> wpt_T_;
- };
- template<class T, class Arg1>
- Operation1<T,Arg1> ls_thread_safe_bind(void (T::*f)(Arg1), boost::shared_ptr<T>& sptT)
- {
- Operation1<T,Arg1> operation(f,sptT);
- return operation;
- }
- template<class T, class Arg1, class Arg2>
- Operation2<T,Arg1,Arg2> ls_thread_safe_bind(void (T::*f)(Arg1,Arg2), boost::shared_ptr<T>& sptT)
- {
- Operation2<T,Arg1,Arg2> operation(f,sptT);
- return operation;
- }
- class A
- {
- public:
- A()
- {
- }
- void close(int a)
- {
- printf("asd\n");
- }
- void close1(int a,bool b)
- {
- printf("asd\n");
- }
- };
- int main()
- {
- boost::shared_ptr<A> spt_a(new A());
- auto f = ls_thread_safe_bind(&A::close, spt_a);
- f(2);
- auto f1 = ls_thread_safe_bind(&A::close1, spt_a);
- f1(2,true);
- return 0;
- }
复制代码 |
|