分享
 
 
 

.net中的 delegate的标准C++模拟

王朝c/c++·作者佚名  2006-01-08
窄屏简体版  字體: |||超大  

发信人: RoachCock (穷鬼), 信区: Programming

标 题: .net中的 delegate的标准C++模拟

发信站: BBS 水木清华站 (Mon Mar 18 21:11:30 2002)

用模板的偏特化和成员模板,重载函数调用运算符成功的实现了delegate,既可以绑定普通函数,也可以绑定对象及其成员函数

在cygnuwin下编译通过,

还不支持一个delegate包含多个函数的用法,不过相信很简单,从std::list派生一个类

就可以了

我用的cygun有些毛病,

my_delegate d2=my_delegate(t,&Test::f);

^如果写成&t,就会导致编译器内部错误,没办法了

我本来写程序是加空行的,贴到BBS上就没了,忍受一下吧

Win32下的各种调用约定很讨厌,没有考虑,不过实现起来不费什么脑筋,就是麻烦,

不管了

// Test.cpp : Defines the entry point for the console application.

//

#include <stddef.h>

template<class T>

//函数traits,用来提取函数的返回类型

struct function_traits

{

};

template<class RT>

struct function_traits< RT(*)() >

{

typedef RT result_type;

};

template<class RT,class AT>

struct function_traits< RT(*)(AT) >

{

typedef RT result_type;

typedef AT argument_type;

};

template<class RT,class AT1,class AT2>

struct function_traits< RT(*)(AT1,AT2) >

{

typedef RT result_type;

typedef AT1 first_argument_type;

typedef AT2 second_argument_type;

};

// 函数traits,用来提取类成员函数的返回类型

template<class RT, class OT>

struct function_traits< RT (OT::*)() >

{

typedef OT object_type;

typedef RT result_type;

};

template<class RT, class OT, class AT>

struct function_traits< RT (OT::*)(AT) >

{

typedef OT object_type;

typedef RT result_type;

typedef AT argument_type;

typedef AT first_argument_type;

};

template<class RT,class OT,class AT1,class AT2>

struct function_traits< RT (OT::*)(AT1,AT2) >

{

typedef OT object_type;

typedef RT result_type;

typedef AT1 first_argument_type;

typedef AT2 second_argument_type;

};

// 把一个普通函数类向转化为类型兼容的指定类的成员函数类型

template <typename OT, typename PFT>

struct to_member_function_pointer

{

};

template <typename OT,typename RT>

struct to_member_function_pointer< OT, RT(*)() >

{

typedef RT (OT::*type)();

};

template <typename OT, typename RT, typename AT>

struct to_member_function_pointer< OT, RT(*)(AT) >

{

typedef RT (OT::*type)(AT);

};

template <typename OT, typename RT, typename AT1, typename AT2>

struct to_member_function_pointer< OT, RT(*)(AT1,AT2) >

{

typedef RT (OT::*type)(AT1,AT2);

};

template <typename OT, typename RT, typename AT1, typename AT2, typename AT3>

struct to_member_function_pointer< OT, RT(*)(AT1,AT2,AT3) >

{

typedef RT (OT::*type)(AT1,AT2,AT3);

};

// 转化为const 成员函数

template <typename OT, typename PFT>

struct to_const_member_function_pointer

{

};

template <typename OT, typename RT>

struct to_const_member_function_pointer< OT, RT(*)() >

{

typedef RT (OT::*type)() const;

};

template <typename OT, typename RT, typename AT>

struct to_const_member_function_pointer< OT, RT(*)(AT) >

{

typedef RT (OT::*type)(AT) const;

};

template <typename OT, typename RT, typename AT1, typename AT2>

struct to_const_member_function_pointer< OT, RT(*)(AT1,AT2) >

{

typedef RT (OT::*type)(AT1,AT2) const;

};

template <typename OT, typename RT, typename AT1, typename AT2, typename AT3>

struct to_const_member_function_pointer< OT, RT(*)(AT1,AT2,AT3) >

{

typedef RT (OT::*type)(AT1,AT2,AT3) const;

};

// delegate的实现

template <typename PFT>

class delegate

{

class object

{

}*m_pObject; // 对象指针,是一个代理对象

typedef typename to_member_function_pointer<object, PFT>::type object_member_fuunction_pointer;

union

{

PFT m_pf;

object_member_function_pointer m_pmf;

}; // 函数指针和成员函数指针的联合体

public:

typedef typename function_traits<PFT>::result_type result_type;

delegate()

{

m_pObject=NULL;

m_pf=NULL;

}

delegate(PFT pf)

{

operator=(pf);

}

template<typename OT>

delegate(

OT *pObject,

typename to_member_function_pointer<OT, PFT>::type pmf

)

{

m_pObject=reinterpret_cast<object*>(pObject);

m_pmf=*(reinterpret_cast<object_member_function_pointer*>(&pmf));

}

template<typename OT>

delegate(

OT &pObject,

typename to_member_function_pointer<OT, PFT>::type pmf

)

{

m_pObject=reinterpret_cast<object*>(&pObject);

m_pmf=*(reinterpret_cast<object_member_function_pointer*>(&pmf));

}

template<typename OT>

delegate(

const OT *pObject,

typename to_const_member_function_pointer<OT, PFT>::type pmf

)

{

m_pObject=const_cast<object*>(reinterpret_cast<object*>(pObject));

m_pmf=*(reinterpret_cast<object_member_function_pointer*>(&pmf));

}

template<typename OT>

delegate(

const OT &pObject,

typename to_const_member_function_pointer<OT, PFT>::type pmf

)

{

m_pObject=const_cast<object*>(reinterpret_cast<object*>(&pObject));

m_pmf=*(reinterpret_cast<object_member_function_pointer*>(&pmf));

}

delegate & operator=(PFT pf)

{

m_pf=pf;

m_pObject=0;

return *this;

}

template<int>

:gcc的函数模板不许无参数,加了个占位的"int"才能通过

result_type operator()()

{

if(m_pObject)

return (m_pObject->*m_pmf)();

else

return m_pf();

}

template<typename AT>

result_type operator()(

AT a1

)

{

if(m_pObject)

return (m_pObject->*m_pmf)(a1);

else

return m_pf(a1);

}

template<typename AT1, typename AT2>

result_type operator()(

AT1 a1,

AT2 a2

)

{

if(m_pObject)

return (m_pObject->*m_pmf)(a1,a2);

else

return m_pf(a1,a2);

}

template<typename AT1, typename AT2, typename AT3>

result_type operator()(

AT1 a1,

AT2 a2,

AT3 a3

)

{

if(m_pObject)

return (m_pObject->*m_pmf)(a1,a2,a3);

else

return m_pf(a1,a2,a3);

}

};

int gf(int)

{

return 0;

}

class Test

{

public:

int f(int){return 0;}

};

typedef delegate < int (*)(int) > my_delegate;

int main()

{

Test t;

my_delegate d1=&gf; // 普通函数

my_delegate d2=my_delegate(t,&Test::f); //对象和类成员函数

d1(0); //调用

d2(2);

}

--

要钱没有,要命也没有

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有