C ++字符串和成员函数指针的映射

时间:2013-01-19 21:46:14

标签: c++ map member-function-pointers

嘿所以我正在创建一个以字符串作为键和成员函数指针作为值的映射。我似乎无法弄清楚如何添加到地图,这似乎不起作用。

#include <iostream>
#include <map>
using namespace std;

typedef string(Test::*myFunc)(string);
typedef map<string, myFunc> MyMap;


class Test
{
private:
    MyMap myMap;

public:
    Test(void);
    string TestFunc(string input);
};





#include "Test.h"

Test::Test(void)
{
    myMap.insert("test", &TestFunc);
    myMap["test"] = &TestFunc;
}

string Test::TestFunc(string input)
{
}

1 个答案:

答案 0 :(得分:10)

value_type

std::map::insertstd::map
myMap.insert(std::map<std::string, myFunc>::value_type("test", &Test::TestFunc));

operator[]

myMap["test"] = &Test::TestFunc;

如果没有对象,则不能使用指向成员函数的指针。您可以将指向成员函数的指针与类型为Test

的对象一起使用
Test t;
myFunc f = myMap["test"];
std::string s = (t.*f)("Hello, world!");

或指向Test

的指针
Test *p = new Test();
myFunc f = myMap["test"];
std::string s = (p->*f)("Hello, world!");

另见C++ FAQ - Pointers to member functions