首页 相关文章 C++基础:函数指针调用方式

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

// test12.cpp : Defines the entry point for the console application.
   //
  
   #include "stdafx.h"
  
   void func(int i)
   {
   printf("This is for test %i", i);
   }
  
   !-- frame contents -- !-- /frame contents -- typedef void (*PFUNC)(int);
  
   strUCt FUNC
   {
   PFUNC pfunc;
   };
  
   v...[ 查看全文 ]

2016-02-19 标签:

C++基础:函数指针调用方式的相关文章

手机页面
收藏网站 回到头部