直接调用普通函数地址

class TestClass
{
public:
 void TestFunc()
 {
  MessageBox( NULL, _T( "122" ), _T( "122" ), MB_OK );
 }
};

typedef void ( TestClass::* pVoidFun )();

int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, TSTR lpCmdLine, int nCmdShow )
{
 TestClass t1;

 pVoidFun pFunc1 = &( TestClass::TestFunc );

 (t1.*pFunc1)();

 return 0;

}


将成员函数指针强制转换成void*指针
http://www.21tx.com 2007年04月21日

  采用取成员函数指针的地址的方法,先把指向成员函数指针的指针强制转化为别的类型,如unsigned*,当然同样可以通过此转化后的指针经过相反的变换来调用成员函数。于是乎要转化为void*的问题也随之可解,如下示例:

以下是引用片段:
  /*VS2003下编译运行*/
  classAbstractMethod
  {
  public:
  virtualvoidshow(){}//=0;//可以是纯虚函数,这里为了测试方便不使用纯虚函数!
  voidfun()
  {
  cout<<"Iwascalled!"<<endl;
  }
  voidfun1()
  {
  cout<<"Iwascalled!"<<endl;
  }
  };
  intmain()
  {
  //定义成员函数指针类型
  typedefvoid(AbstractMethod::*MFP)(void);
  //转化函数指针为别的指针
  MFPmfp1=&AbstractMethod::show;
  unsigned*tmp=(unsigned*)&mfp1;
  cout<<hex<<*tmp<<endl;
  MFPmfp2=&AbstractMethod::fun;
  tmp=(unsigned*)&mfp2;
  cout<<hex<<*tmp<<endl;
  MFPmfp3=&AbstractMethod::fun1;
  tmp=(unsigned*)&mfp3;
  cout<<hex<<*tmp<<endl;
  //通过转化后的指针调用成员函数
  AbstractMethodam;
  MFP*addr=(MFP*)tmp;
  (am.*mfp3)();
  (am.*(*addr))();
  return0;
  }

  验证上述方法取得的成员函数地址是否正确:

  1. 在调试是查看临时变量函数指针的值和输出的是否一样。

  2. 可以根据调试时的反汇编进行结果验证。

  3. 最好的办法就是如上例子通过转化后的指针来调用成员函数。


你可能感兴趣的:(直接调用普通函数地址)