C++ Functional 库 - assign
描述
它用 f 初始化目标。 alloc 用于为函数可能使用的任何内部数据结构分配内存。
声明
以下是 std::function::assign 的声明。
C++11
template< class F, class Alloc >
C++17
void assign( F&& f, const Alloc& alloc );
参数
other − 此函数对象用于初始化 *this。
f − 用于初始化 *this 的可调用对象。
返回值
none
异常
none