免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2605 | 回复: 3
打印 上一主题 下一主题

[C++] 模板有没有办法不用STL的萃取获得函数参数类型? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-02-25 17:26 |只看该作者 |倒序浏览
RT
  1. template<class T,class A1>
  2. class A
  3. {
  4. public:
  5.         A(void (T::*f)(A1), T* t,A1& a1):t_(t),f_(f)
  6.         {
  7.                 boost::bind(&A::operator(),this,_1);
  8.         }

  9.         void operator()(A1& a1)
  10.         {
  11.                 printf("asd\n");
  12.                 (t_->*f_)(a1);
  13.         }

  14.         T* t_;
  15.         void (T::*f_)(A1);
  16. };

  17. template<class T, class arg>
  18. A<T,arg> ls_bind(void (T::*f)(arg), T* t,arg qwe)
  19. {
  20.         A<T,arg> a(f,t,qwe);
  21.         return a;
  22. }

  23. class test
  24. {
  25. public:
  26.         test()
  27.         {

  28.         }

  29.         void close(int a)
  30.         {
  31.                 printf("%d\n",a);
  32.         }
  33. };

  34. int main(int argc, char **argv)
  35. {
  36.         test qwe;
  37.         boost::function<void(int)> f = ls_bind(&test::close,&qwe,3);
  38.         f(2);
  39.         return 0;
  40. }
复制代码
给BIND的外覆了一层,但是有个地方不方便,ls_bind(&test::close,&qwe,3);必须要把第3个参数的类型传进去再行,能不能再修改一下,使得调用接口能够自动判断传进去的函数参数的类型以及个数?

论坛徽章:
0
2 [报告]
发表于 2013-02-25 20:44 |只看该作者
已解决
  1. template<class T,class Arg1>
  2. class Operation1
  3. {
  4.         typedef void (T::*F)(Arg1);
  5. public:
  6.         Operation1(F f,boost::shared_ptr<T>& sptT):f_(f),wpt_T_(sptT)
  7.         {
  8.                 boost::bind(&Operation1::operator(), this,_1);
  9.         }

  10.         void operator()(Arg1 arg1)
  11.         {
  12.                 boost::shared_ptr<T> spt_T = wpt_T_.lock();
  13.                 if(spt_T)
  14.                 {
  15.                         T* p = spt_T.get();
  16.                         (p->*f_)(arg1);
  17.                 }
  18.         }

  19. private:
  20.         F f_;
  21.         boost::weak_ptr<T> wpt_T_;
  22. };

  23. template<class T,class Arg1,class Arg2>
  24. class Operation2
  25. {
  26.         typedef void (T::*F)(Arg1,Arg2);
  27. public:
  28.         Operation2(F f,boost::shared_ptr<T>& sptT):f_(f),wpt_T_(sptT)
  29.         {
  30.                 boost::bind(&Operation2::operator(), this,_1,_2);
  31.         }

  32.         void operator()(Arg1 arg1,Arg2 arg2)
  33.         {
  34.                 boost::shared_ptr<T> spt_T = wpt_T_.lock();
  35.                 if(spt_T)
  36.                 {
  37.                         T* p = spt_T.get();
  38.                         (p->*f_)(arg1,arg2);
  39.                 }
  40.         }

  41. private:
  42.         F f_;
  43.         boost::weak_ptr<T> wpt_T_;
  44. };

  45. template<class T, class Arg1>
  46. Operation1<T,Arg1> ls_thread_safe_bind(void (T::*f)(Arg1), boost::shared_ptr<T>& sptT)
  47. {
  48.         Operation1<T,Arg1> operation(f,sptT);
  49.         return operation;
  50. }

  51. template<class T, class Arg1, class Arg2>
  52. Operation2<T,Arg1,Arg2> ls_thread_safe_bind(void (T::*f)(Arg1,Arg2), boost::shared_ptr<T>& sptT)
  53. {
  54.         Operation2<T,Arg1,Arg2> operation(f,sptT);
  55.         return operation;
  56. }

  57. class A
  58. {
  59. public:
  60.         A()
  61. {

  62. }
  63.         void close(int a)
  64.         {
  65.                 printf("asd\n");
  66.         }

  67.         void close1(int a,bool b)
  68.         {
  69.                 printf("asd\n");
  70.         }
  71. };

  72. int main()
  73. {
  74.         boost::shared_ptr<A> spt_a(new A());
  75.         auto f = ls_thread_safe_bind(&A::close, spt_a);
  76.         f(2);

  77.         auto f1 = ls_thread_safe_bind(&A::close1, spt_a);
  78.         f1(2,true);
  79.         return 0;
  80. }
复制代码

论坛徽章:
0
3 [报告]
发表于 2013-02-25 21:28 |只看该作者
难道就没有C++多线程的好书么?没什么好模式?只能靠自己手动保护逻辑???智能指针真TM是条贼船,上了就下不了,为了简单解决竞争用了weak_ptr,于是就要用上enable_shared_from_this,所有对象全要智能指针管理了。。。。估计后面还要做内存池。。。因为全是new智能指针

论坛徽章:
0
4 [报告]
发表于 2013-02-26 11:20 |只看该作者
裸奔吧,然后上GC就好。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP