<type_traits>

类模板
<type_traits>

std::add_cv

template <class T> struct add_cv;
添加 const volatile 限定符
获取类型T同时具有constvolatile的顶层限定符。

转换后的类型别名为成员类型add_cv::type.

如果已知T如果 T 尚未被 const-volatile- 限定,并且不是引用或函数(它们不能被 cv 限定),则它与T但是constvolatile已限定。否则,它是T不变。

请注意,此类仅使用另一个类型作为模型来获取类型,但它不转换这些类型之间的值或对象。要显式为对象添加 cv 限定,请使用const_cast可以使用。

模板参数

T
一个类型。

成员类型

成员类型定义
类型如果已知T如果 T 尚未被 const-volatile-限定,并且不是引用或函数,则与T但已添加 cv 限定。
否则,T

示例

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

int main() {
  typedef std::add_cv<int>::type A;
  typedef std::add_cv<const int>::type B;
  typedef std::add_cv<volatile int>::type C;
  typedef std::add_cv<const volatile int>::type D;

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

  return 0;
}

输出
typedefs of const volatile int:
A: true
B: true
C: true
D: true


另见