码迷,mamicode.com
首页 > 编程语言 > 详细

C++ 在容器中存放函数指针

时间:2016-12-06 09:38:39      阅读:324      评论:0      收藏:0      [点我收藏+]

标签:use   argc   模板   pac   using   pre   c++   include   nbsp   

注意,对一般c++ 98标准编译器而言,容器泛型模板是不支持直接存放函数指针的。需要typedef将函数指针重命名。

比如,一个void返回值参数也为void的函数指针,需要

typedef void(*test)(void);

这样,test就可以当做函数指针模板类型添加到容器当中了。

map<int, test> testMap;
pair<int,test> p1 = make_pair(1,displayone);

以下示例代码简单的示范一下:

#include<iostream>
#include<string>
#include<map>
using namespace std;
typedef void(*test)(void);
void displayone() { cout << "one" << endl; }
void displaytwo() { cout << "two" << endl; }
int main(int argc, char* argv[]) { map<int, test> testMap; pair<int,test> p1 = make_pair(1,displayone); pair<int,test> p2 = make_pair(2,displaytwo); testMap.insert(p1); testMap.insert(p2); testMap[1](); (*testMap[2])(); system("pause"); }

 

C++ 在容器中存放函数指针

标签:use   argc   模板   pac   using   pre   c++   include   nbsp   

原文地址:http://www.cnblogs.com/AkazaAkari/p/6136233.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!