命名空间
变体
操作

std::function<R(Args...)>::operator=

来自 cppreference.com
< cpp‎ | utility‎ | functional‎ | function
 
 
工具库
语言支持
类型支持 (基本类型,RTTI)
库功能测试宏 (C++20)
动态内存管理
程序工具
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三向比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
函数对象
函数调用
(C++17)(C++23)
标识函数对象
(C++20)
透明运算符包装器
(C++14)
(C++14)
(C++14)
(C++14)  
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)

旧的绑定器和适配器
(直到 C++17*)
(直到 C++17*)
(直到 C++17*)
(直到 C++17*)  
(直到 C++17*)
(直到 C++17*)(直到 C++17*)(直到 C++17*)(直到 C++17*)
(直到 C++20*)
(直到 C++20*)
(直到 C++17*)(直到 C++17*)
(直到 C++17*)(直到 C++17*)

(直到 C++17*)
(直到 C++17*)(直到 C++17*)(直到 C++17*)(直到 C++17*)
(直到 C++20*)
(直到 C++20*)
 
 
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 移动到 *thisother 处于有效状态,其值不确定。
3) 丢弃当前的目标。 调用后,*this
4)*this目标设置为可调用对象 f,如同执行 function(std::forward<F>(f)).swap(*this);. 除非 f 是针对参数类型 Args... 和返回类型 RCallable,否则此运算符不会参与重载解析。
5)*this目标 设置为 f 的副本,就好像通过执行 function(f).swap(*this); 一样。

内容

[编辑] 参数

other - 另一个要复制其目标的 std::function 对象
f - 用于初始化 目标 的可调用对象
类型要求
-
F 必须满足 Callable 的要求。

[编辑] 返回值

*this

[编辑] 备注

即使在 C++17 中从 std::function 中删除分配器支持之前,这些赋值运算符也使用默认分配器,而不是 *this 的分配器或 other 的分配器(参见 LWG issue 2386)。

[编辑] 示例

#include <cassert>
#include <functional>
#include <utility>
 
int inc(int n) { return n + 1; }
 
int main()
{
    std::function<int(int)> f1;
    std::function<int(int)> f2(inc);
    assert(f1 == nullptr and f2 != nullptr);
 
    f1 = f2; // overload (1)
    assert(f1 != nullptr and f1(1) == 2);
 
    f1 = std::move(f2); // overload (2)
    assert(f1 != nullptr and f1(1) == 2);
    // f2 is in valid but unspecified state
 
    f1 = nullptr; // overload (3)
    assert(f1 == nullptr);
 
    f1 = inc; // overload (4)
    assert(f1 != nullptr and f1(1) == 2);
 
    f1 = [](int n) { return n + n; }; // overload (4)
    assert(f1 != nullptr and f1(2) == 4);
 
    std::reference_wrapper<int(int)> ref1 = std::ref(inc);
    f1 = ref1; // overload (5)
    assert(f1 != nullptr and f1(1) == 2);
}

[编辑] 缺陷报告

以下行为变更缺陷报告已追溯应用于先前发布的 C++ 标准。

DR 应用于 已发布的行为 正确行为
LWG 2132 C++11 重载 (4) 接受 Callable 对象可能存在歧义 已约束
LWG 2401 C++11 来自 std::nullptr_t 的赋值运算符 (3) 不需要是 noexcept 需要

[编辑] 参见

替换或销毁目标
(std::move_only_function 的公共成员函数) [编辑]
(在 C++17 中移除)
分配新的目标
(公共成员函数) [编辑]