<type_traits>

类模板
<type_traits>

std::add_lvalue_reference

template <class T> struct add_lvalue_reference;
添加左值引用
获取指向T.

转换后的类型别名为成员类型的左值引用类型如下

  • 如果已知Tis an object or function type, this isT&.
  • 如果已知Tis an rvalue reference type, this is the lvalue reference that refers to the same type (e.g., forint&&this isint&).
  • Otherwise (i.e.,T的 C++ 等效文件是voidor already an lvalue reference), it isT不变。

请注意,此类仅使用另一种类型作为模型来获取类型,但它不会在这些类型之间转换值或对象。

模板参数

T
一个类型。

成员类型

成员类型定义
类型如果已知Tis an object or function typeT&
如果已知Tis the rvalue reference typeU&&: U&
否则T

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// add_lvalue_reference
#include <iostream>
#include <type_traits>

int main() {
  typedef std::add_lvalue_reference<int>::type A;    // int&
  typedef std::add_lvalue_reference<int&>::type B;   // int&
  typedef std::add_lvalue_reference<int&&>::type C;  // int&
  typedef std::add_lvalue_reference<int*>::type D;   // int*&

  std::cout << std::boolalpha;
  std::cout << "typedefs of int&:" << std::endl;
  std::cout << "A: " << std::is_same<int&,A>::value << std::endl;
  std::cout << "B: " << std::is_same<int&,B>::value << std::endl;
  std::cout << "C: " << std::is_same<int&,C>::value << std::endl;
  std::cout << "D: " << std::is_same<int&,D>::value << std::endl;

  return 0;
}

输出
typedefs of int&:
A: true
B: true
C: true
D: false


另见