<type_traits>

class template
<type_traits>

std::remove_pointer

template <class T> struct remove_pointer;
Remove pointer
Obtains the type pointed by T (if T is a pointer).

The transformed type is aliased as member type remove_pointer::type.

If T is a pointer type, this is the type to which it points. Otherwise, it is the same as T, unchanged.

Notice that this class merely obtains a type using another type as model, but it does not transform values or objects between those types.

Template parameters

T
A type.

Member types

member typedefinition
typeIf T is a pointer type, the type pointed by T.
Otherwise, T.

Example

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

int main() {
  typedef std::remove_pointer<int>::type A;          // int
  typedef std::remove_pointer<int*>::type B;         // int
  typedef std::remove_pointer<int**>::type C;        // int*
  typedef std::remove_pointer<const int*>::type D;   // const int
  typedef std::remove_pointer<int* const>::type E;   // 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;
  std::cout << "E: " << std::is_same<int,E>::value << std::endl;

  return 0;
}

Output:
typedefs of int:
A: true
B: true
C: false
D: false
D: true


See also