文件名称:myTestFunctor

  • 所属分类:
  • 其他小程序
  • 资源属性:
  • [C/C++] [Windows] [Visual.Net] [源码]
  • 上传时间:
  • 2012-11-26
  • 文件大小:
  • 9kb
  • 下载次数:
  • 0次
  • 提 供 者:
  • z**
  • 相关连接:
  • 下载说明:
  • 别用迅雷下载,失败请重下,重下不扣分!

介绍说明--下载内容均来自于网络,请自行研究使用

c++ 的 functor实现,支持c函数和成员函数,使用非常简单,源码带使用例子

包含头函数:#include "Functor.h"

初始化c函数指针  Functor< int, int, int, int, int, int > fun1( &FuncSum )

  printf( "fun1: d\n", fun1.Exec( 1, 2, 3, 4, 5 ) )

  Functor< int, int, int, int, int, int > fun2

  fun2 = Functor< int, int, int, int, int, int >( &FuncSum )

  fun2 = fun1



成员函数初始化:

  Fool myObj

  fun3 = Functor< int, float, float >( &myObj, &Fool::CallMethod )

  if ( fun3 )

  {

    printf( "fun3 is not null......\n" )

  }

  else

  {

    printf( "fun3 is null......\n" )

  }

  if ( fun3 )

  {

    printf( "fun3 result is: d\n", fun3( 1.2f, 2.1f ) )

  }-c++ implementation of the functor, support c functions and member functions, using a very simple source code with the use of examples include the first function:# include " Functor.h" initialization c function pointer Functor < int, int, int, int, int, int > fun1 (& FuncSum) printf ( " fun1: d \ n" , fun1.Exec (1, 2, 3, 4, 5)) Functor < int, int, int, int, int, int> fun2 fun2 = Functor < int, int, int, int, int, int> (& FuncSum) fun2 = fun1 member function to initialize: Fool myObj fun3 = Functor < int, float, float> (& myObj, & Fool:: CallMethod)  if (fun3) (printf ( " fun3 is not null ...... \ n" ) ) else (printf ( " fun3 is null ...... \ n" ) ) if (fun3) ( printf ( " fun3 result is: d \ n" , fun3 (1.2f, 2.1f)) )
(系统自动生成,下载前可以参看下载内容)

下载文件列表

TestFunctor.vcproj

TestFunctor.vcproj.PC-200901081558.Administrator.user

TestFunctor.vcproj.PERSONAL-6EF27B.zmy.user

TestFunctor.sln

TestFunctor.suo

Functor.h

FunctorBase.h

GlobalFunctor.h

MemberFunctor.h

ReadMe.txt

stdafx.cpp

stdafx.h

TestFunctor.cpp

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度更多...
  • 请直接用浏览器下载本站内容,不要使用迅雷之类的下载软件,用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.

相关评论

暂无评论内容.

发表评论

*主  题:
*内  容:
*验 证 码:

源码中国 www.ymcn.org