标签: c++ c++11
std::bind的一个版本允许调用者提供显式返回类型:
std::bind
template< class R, class F, class... Args > /*unspecified*/ bind( F&& f, Args&&... args );
当人们使用(或被迫使用)此std::bind版本时,有什么好的例子?