<type_traits>

类模板
<type_traits>

std::remove_cv

template <class T> struct remove_cv;
移除 cv 限定
获取类型T除去顶层的constvolatile限定符。

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

如果已知T如果类型是cv限定(即是const和/或volatile),那么它和T但移除了其cv限定。否则,它就是T不变。

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

模板参数

T
一个类型。

成员类型

成员类型定义
类型如果已知T如果类型是cv限定,则与T相同,但移除了任何 cv 限定。
否则,T

示例

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

int main() {
  typedef const volatile char cvchar;
  std::remove_cv<cvchar>::type a;       // char a
  std::remove_cv<char* const>::type b;  // char* b
  std::remove_cv<const char*>::type c;  // const char* c (no changes)

  if (std::is_const<decltype(a)>::value)
    std::cout << "type of a is const" << std::endl;
  else
    std::cout << "type of a is not const" << std::endl;

  if (std::is_volatile<decltype(a)>::value)
    std::cout << "type of a is volatile" << std::endl;
  else
    std::cout << "type of a is not volatile" << std::endl;

  return 0;
}

输出
type of a is not const
type of a is not volatile


另见