我想从一个Command类创建一个变量,它将接收一个函数及其参数,并在调用Execute时执行它,但我不知道如何将构造函数参数传递给类成员变量,因为我不知道如何函数指针将是。
这是我想到的一些伪代码。
class Command {
public:
template<_Fn, _Args...>
Command(_Fn&& _function, _Args&&... _args)
{
}
void Execute(){
}
};
void Print(int _int, float _float){
...
}
void Print(const char* _text, unsigned int _uint){
...
}
int main(){
Command cmd0 = Command(&Print, 5, 6.2f);
Command cmd1 = Command(&Print, "Hello", 2u);
cmd1.Execute();
cmd0.Execute();
}
没有必要重新发明这只是使用std::function
和std::bind
:
int main(){
std::function<void()> cmd0 = std::bind(&PrintIntFloat, 5, 6.2f);
std::function<void()> cmd1 = std::bind(&PrintStringInt, "Hello", 2u);
cmd1();
cmd0();
}
请注意,我重命名了这些函数,因为lifting overload sets在C ++中存在问题。
或者你可以使用lambdas,在这种情况下不需要提升(感谢deW1的建议):
std::function<void()> cmd0 = [] { Print(5, 6.2f); };
std::function<void()> cmd1 = [] { Print("Hello", 2u); };