public member function
<functional>

std::reference_wrapper::operator type&

operator type&() const noexcept;
转换为引用
返回被引用对象的引用。

type 是一个描述被引用类型的成员类型(它是类模板参数 T 的别名)。

此函数返回的结果与成员 get 相同。

参数



返回值

被引用的对象。

type 是一个描述被引用类型的成员类型(它是类模板参数 T 的别名)。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// reference_wrapper::operator type&
#include <iostream>     // std::cout
#include <functional>   // std::reference_wrapper

int main () {
  int foo;

  std::reference_wrapper<int> wrap (foo);

  static_cast<int&>(wrap) = 10;
  int& bar = wrap;
  ++bar;

  std::cout << foo << '\n';

  return 0;
}

输出
11


数据竞争

该对象被访问。
返回的引用可用于访问或修改该元素。

异常安全

无异常保证:此成员函数从不抛出异常。

另见