标签: c++ c++11 templates std-function
关于std :: function的定义,
template< class R, class... Args > class function<R(Args...)>;
模板的实例化如下:
std::function<int(Foo const&)> f_num = &Foo::num_;
我很困惑,如何使用这个参数:int(Foo const&amp;)。 int和Foo const&amp;都是类型。