2011年9月28日

CLR中的委托和事件

摘要: 还记得这个声明吗: Returntype (*lpfun)(params). 这是本地C++中的函数指针,即把此类型变量指针返回类型和实参一样的函数,就可以用此类型变量来执行此过程。如下:#include <iostream>typedef int (*lpfun)(int&);int getvalue(int& a){ return a;}void main(){ lpfun p=getvalue; int var=55; printf("the value is: %d\n",p(var));}结果为: 和函数指针一样,在C++/CLR中的事 阅读全文

posted @ 2011-09-28 11:33 天上星 阅读(856) 评论(0) 推荐(0) 编辑

导航