在一个函数中我需要作为参数传递一个可调用的std :: bind。 我应该使用什么样的正确类型/模板?
void foo(std::function<void(KnownType)> function, WhatShouldThisBe target)
{
std::bind(function, target);
}
预期用途是:
std::shared_ptr<SomeType> bar = std::make_shared<SomeType>();
foo(&SomeType::function, bar);
答案 0 :(得分:2)
像
这样的东西ionic serve