<type_traits>

类模板
<type_traits>

std::remove_const

template <class T> struct remove_const;
移除const限定符
获取类型T不带顶层const的顶层限定符。

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

如果已知Tconst限定的,这与...是相同的类型T但是移除了它的const限定符。否则,它就是T不变。

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

模板参数

T
一个类型。

成员类型

成员类型定义
类型如果已知Tconst限定的,与...是相同的类型T但移除了const限定符。
否则,T

示例

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

int main() {
  typedef const char cc;
  std::remove_const<cc>::type a;             // char a
  std::remove_const<const char*>::type b;    // const char* b
  std::remove_const<char* const>::type c;    // char* c

  a = 'x';
  b = "remove_const";
  c = new char[10];

  std::cout << b << std::endl;

  return 0;
}

输出
remove_const


另见