WEB开发网
开发学院软件开发C++ C++基础:函数指针调用方式 阅读

C++基础:函数指针调用方式

 2008-03-08 21:37:12 来源:WEB开发网   
核心提示: // test12.cpp : Defines the entry point for the console application. // #include "stdafx.h" void func(int i) { PRintf("This is for test %i
  // test12.cpp : Defines the entry point for the console application.
  //

  #include "stdafx.h"

  void func(int i)
  {
  PRintf("This is for test %i\r\n", i);
  }

  typedef void (*PFUNC)(int);

  strUCt FUNC
  {
  PFUNC pfunc;
  };
 
  void callfunc(void pfunc(int), int i)
  {
  pfunc(i);
  }

  int main(int argc, char* argv[])
  {
  void (*pfunc)(int);
  pfunc = &func;
  pfunc(1);

  callfunc(pfunc, 2);

  FUNC sfunc;
  sfunc.pfunc = &func;
  sfunc.pfunc(3);

  return 0;
  }
 


更多文章 更多内容请看C/C++技术专题专题,或

Tags:基础 函数 指针

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接