std::function<R(Args...)>::operator=
< cpp | utility | functional | function
function& operator=( const function& other ); |
(1) | (C++11 起) |
function& operator=( function&& other ); |
(2) | (C++11 起) |
function& operator=( std::nullptr_t ) noexcept; |
(3) | (C++11 起) |
template< class F > function& operator=( F&& f ); |
(4) | (C++11 起) |
template< class F > function& operator=( std::reference_wrapper<F> f ) noexcept; |
(5) | (C++11 起) |
赋值新目标给 std::function
。
1) 赋值
other
的目标副本,如同以执行 function(other).swap(*this);2) 移动
other
的目标到 *this 。 other
在有未指定值的合法状态。3) 舍弃当前目标。 *this 在调用后为空。
4) 设置 *this 的目标为可调用的
f
,如同以执行 function(std::forward<F>(f)).swap(*this); 。此运算符不参与重载决议,除非 f
对于参数类型 Args...
和返回类型 R
可调用 (Callable) 。 (C++14 起)5) 设置 *this 的目标为
f
的副本,如同以执行 function(f).swap(*this);参数
other | - | 要复制其目标的另一 std::function 对象
|
f | - | 用以初始化目标的可调用对象 |
类型要求 | ||
-F 必须满足可调用 (Callable) 的要求。
|
返回值
*this
注解
虽然 C++17 中从 std::function
移除了以前的分配器支持,这些赋值运算符使用默认分配器,而不是 *this
或 other
的分配器(见 LWG #2386 )。
缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
DR | 应用于 | 出版时的行为 | 正确行为 |
---|---|---|---|
LWG 2401 | C++11 | 未要求源自 std::nullptr_t 的构造函数为 noexcept | 要求 |
参阅
(C++17 中移除) |
为内容赋值一个新的目标 (公开成员函数) |