命名空间
变体
操作

std::move_only_function::operator()

来自 cppreference.cn
 
 
 
函数对象
函数调用
(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 调用存储的可调用目标。operator()/*cv*//*ref*//*noex*/ 部分与 std::move_only_function 的模板参数相同。

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

  • cv ref 为空或是 &,则为 f,或
  • cv refconstconst &,则为 std::as_const(f),或
  • cv ref&&,则为 std::move(f),或
  • cv refconst &&,则为 std::move(std::as_const(f))

*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 起)
(函数模板) [编辑]