我想做一个OIS :: Keys(int)和std :: function。
的数组我有这个:
struct UserCommands
{
OIS::KeyCode key;
std::function<bool(Worms *, const Ogre::FrameEvent& evt)> func;
};
UserInput input;
UserCommands usrCommands[] =
{
{
OIS::KC_A, std::bind(&input, &UserInput::selectBazooka)
},
};
但是当我尝试编译它时,我遇到了这个编译错误:
In file included from includes/WormsApp.hh:5:0,
/src/main.cpp:2:
/includes/InputListener.hh:26:25: error: could not convert ‘std::bind(_Func&&, _BoundArgs&& ...) [with _Func = UserInput*; _BoundArgs = {bool (UserInput::*)(Worms*, const Ogre::FrameEvent&)}; typename std::_Bind_helper<std::__is_socketlike<_Func>::value, _Func, _BoundArgs ...>::type = std::_Bind<UserInput*(bool (UserInput::*)(Worms*, const Ogre::FrameEvent&))>](&UserInput::selectBazooka)’ from ‘std::_Bind_helper<false, UserInput*, bool (UserInput::*)(Worms*, const Ogre::FrameEvent&)>::type {aka std::_Bind<UserInput*(bool (UserInput::*)(Worms*, const Ogre::FrameEvent&))>}’ to ‘std::function<bool(Worms*, const Ogre::FrameEvent&)>’
OIS::KC_A, std::bind(&input, &UserInput::selectBazooka)
^
我做错了什么?
答案 0 :(得分:6)
使用lambda,就像这样(而不是std::bind()
)
[&](Worms*x, const Ogre::FrameEvent&y) { return input.selectBazooka(x,y); }
答案 1 :(得分:5)
std::bind
的第一个参数是一个可调用对象。在您的情况下,那应该是&UserInput::selectBazooka
。与该成员函数(&input
)的调用相关联的对象随后发生(您颠倒了此顺序)。但是,您必须使用占位符来显示缺少的参数:
std::bind(&UserInput::selectBazooka, &input, std::placeholders::_1, std::placeholders::_2)