我设置此帐户主要是因为我在其他地方找不到答案。我检查了stackoverflow和不同页面上的各种教程或问题/答案。
我正在编写基于终端的textadventure并需要一个函数映射。这就是我得到的(我遗漏了所有对问题不感兴趣的东西)
#include <map>
using namespace std;
class CPlayer
{
private:
//Players functions:
typedef void(CPlayer::*m_PlayerFunction)(void); //Function-pointer points to various player
//functions
map<char*, m_PlayerFunction> *m_FunctionMap; //Map containing all player functions
public:
//Constructor
CPlayer(char* chName, CRoom* curRoom, CInventory* Inventory);
//Functions:
bool useFunction(char* chPlayerCommand);
void showDoors(); //Function displaing all doors in the room
void showPeople(); //Function displaying all people in the room
};
#endif
#include "CPlayer.h"
#include <iostream>
CPlayer::CPlayer(char chName[128], CRoom* curRoom, CInventory *Inventory)
{
//Players functions
m_FunctionMap = new map<char*, CPlayer::m_PlayerFunction>;
m_FunctionMap->insert(std::make_pair((char*)"show doors", &CPlayer::showDoors));
m_FunctionMap->insert(std::make_pair((char*)"show people", &CPlayer::showPeople));
}
//Functions
//useFunction, calls fitting function, return "false", when no function ist found
bool CPlayer::useFunction(char* chPlayerCommand)
{
CFunctions F;
map<char*, m_PlayerFunction>::iterator it = m_FunctionMap->begin();
for(it; it!=m_FunctionMap->end(); it++)
{
if(F.compare(chPlayerCommand, it->first) == true)
{
cout << "Hallo" << endl;
(it->*second)();
}
}
return false;
}
现在,问题如下:
如果我这样调用函数:
(it->*second)();
这似乎是应该怎么做,我得到以下错误:
error: ‘second’ was not declared in this scope
如果我这样调用函数:
(*it->second)();
这是我从这个帖子得到的:Using a STL map of function pointers,我得到以下错误:
error: invalid use of unary ‘ * ’ on pointer to member
PS:了解“map”或“unordered_map”是否是解决此问题的更好方法也很有趣。
正如我所说,谢谢你: GB
答案 0 :(得分:1)
困难可能是它同时是一个映射,它涉及指向成员的指针,这使得语法调用更复杂,括号必须位于正确的位置。我认为它应该是这样的:
(this->*(it->second))()
或者,正如Rakete1111指出的那样,以下内容也起作用:
(this->*it->second)()
(请注意,后者不那么详细,但对于那些没有运营商优先权的人来说也不那么容易阅读。)