Udostępnij za pośrednictwem


remove_pointer Class

Powoduje, że typ z wskaźnik, aby wpisać.

template<class Ty>
    struct remove_pointer;

Parametry

  • Ty
    Typ, aby zmodyfikować.

Uwagi

Wystąpienie modyfikator typu posiada modyfikacji typu, który jest Ty1 po Ty ma postać Ty1*, Ty1* const, Ty1* volatile, lub Ty1* const volatile, w przeciwnym razie Ty.

Przykład

 

// std_tr1__type_traits__remove_pointer.cpp 
// compile with: /EHsc 
#include <type_traits> 
#include <iostream> 
 
int main() 
    { 
    int *p = (std::remove_pointer<int *>::type *)0; 
 
    p = p;  // to quiet "unused" warning 
    std::cout << "remove_pointer<int *> == " 
        << typeid(*p).name() << std::endl; 
 
    return (0); 
    } 
 
  

Wymagania

Nagłówek: <type_traits>

Obszar nazw: std

Zobacz też

Informacje

<type_traits>

add_pointer Class

Inne zasoby

<type_traits> Członkowie