std::reference_wrapper<T>::operator()
来自 cppreference.com
< cpp | utility | functional | reference wrapper
template< class... ArgTypes > typename std::result_of<T&(ArgTypes&&...)>::type |
(自 C++11 起) (直到 C++17) |
|
template< class... ArgTypes > std::invoke_result_t<T&, ArgTypes...> |
(自 C++17 起) (自 C++20 起为 constexpr) |
|
调用存储的 Callable 对象的引用,就好像通过 INVOKE(get()
, std::forward<ArgTypes>(args)...)。此函数仅在存储的引用指向 Callable 对象时可用。
T
必须是完整的类型。
内容 |
[编辑] 参数
args | - | 要传递给被调用函数的参数 |
[编辑] 返回值
被调用函数的返回值。
[编辑] 异常
可能会抛出实现定义的异常。 |
(自 C++11 起) (直到 C++17) |
noexcept 规范:
noexcept(std::is_nothrow_invocable_v<T&, ArgTypes...>) |
(自 C++17 起) |
[编辑] 示例
运行此代码
#include <functional> #include <iostream> void f1() { std::cout << "reference to function called\n"; } void f2(int n) { std::cout << "bind expression called with " << n << " as the argument\n"; } int main() { std::reference_wrapper<void()> ref1 = std::ref(f1); ref1(); auto b = std::bind(f2, std::placeholders::_1); auto ref2 = std::ref(b); ref2(7); auto c = []{ std::cout << "lambda function called\n"; }; auto ref3 = std::ref(c); ref3(); }
输出
reference to function called bind expression called with 7 as the argument lambda function called
[编辑] 缺陷报告
以下行为更改缺陷报告已追溯应用于之前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 3764 | C++17 | operator() 不是 noexcept | 传播 noexcept |
[编辑] 另请参见
访问存储的引用 (公有成员函数) |