首页 > 学院 > 开发设计 > 正文

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

2019-11-17 05:04:21
字体:
来源:转载
供稿:网友
  // 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++技术专题专题,或

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表