命名空间
变体
操作

std::move_only_function::operator()

来自 cppreference.com
 
 
实用程序库
语言支持
类型支持 (基本类型,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*)
 
 
R operator()( Args... args ) /*cv*/ /*ref*/ noexcept(/*noex*/);
(自 C++23)

使用参数 args 调用存储的可调用目标。 /*cv*//*ref*//*noex*/ 部分的 operator()std::move_only_function 的模板参数相同。

等效于 return std::invoke_r<R>(/*cv-ref-cast*/(f), std::forward<Args>(args)...);, 其中 f 是一个 cv 无限定左值,表示 *this 的目标对象,并且 /*cv-ref-cast*/(f) 等效于

  • f 如果 cv ref 为空或 &, 或者
  • std::as_const(f) 如果 cv refconstconst &, 或者
  • std::move(f) 如果 cv ref&&, 或者
  • std::move(std::as_const(f)) 如果 cv refconst &&.

如果 *this 为空,则行为未定义。

内容

[编辑] 参数

args - 要传递给存储的可调用目标的参数

[编辑] 返回值

std::invoke_r<R>(/*cv-ref-cast*/(f), std::forward<Args>(args)...).

[编辑] 异常

传播底层函数调用抛出的异常。

[编辑] 示例

以下示例展示了如何将 std::move_only_function 按值传递给其他函数。此外,它还展示了如何用 std::move_only_function 存储 lambda 表达式。

#include <iostream>
#include <functional>
 
void call(std::move_only_function<int() const> f)  // can be passed by value
{ 
    std::cout << f() << '\n';
}
 
int normal_function() 
{
    return 42;
}
 
int main()
{
    int n = 1;
    auto lambda = [&n](){ return n; };
    std::move_only_function<int() const> f = lambda;
    call(std::move(f));
 
    n = 2;
    call(lambda); 
 
    f = normal_function; 
    call(std::move(f));
}

输出

1
2
42

[编辑] 另请参见

调用目标
(std::function<R(Args...)> 的公共成员函数) [编辑]
调用存储的函数
(std::reference_wrapper<T> 的公共成员函数) [编辑]
(C++17)(C++23)
使用给定参数调用任何 Callable 对象 并可以指定返回值类型(自 C++23 起)
(函数模板) [编辑]