<type_traits>

类模板
<type_traits>

std::add_rvalue_reference

template <class T> struct add_rvalue_reference;
添加右值引用
获取引用自T.

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

  • 如果已知T如果是对象函数类型,则为T&&.
  • 否则(即T的 C++ 等效文件是void或者左值引用或已经是右值引用),则保持T不变。

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

模板参数

T
一个类型。

成员类型

成员类型定义
类型如果已知T对象函数类型T&&
否则T

示例

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

int main() {
  typedef std::add_rvalue_reference<int>::type A;    // int&&
  typedef std::add_rvalue_reference<int&>::type B;   // int&  (no change)
  typedef std::add_rvalue_reference<int&&>::type C;  // int&& (no change)
  typedef std::add_rvalue_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: false
C: true
D: false


另见