Udostępnij za pośrednictwem


Klasa remove_const

Tworzy typ inny niżconst typ z typu.

Składnia

template <class T>
struct remove_const;

template <class T>
using remove_const_t = typename remove_const<T>::type;

Parametry

T
Typ do modyfikacji.

Uwagi

Wystąpienie remove_const<T> obiektu przechowuje zmodyfikowany typ, który występuje T1 w przypadku T formularza const T1, w przeciwnym razie T.

Przykład

#include <type_traits>
#include <iostream>

int main()
    {
    int *p = (std::remove_const_t<const int>*)0;

    p = p;  // to quiet "unused" warning
    std::cout << "remove_const_t<const int> == "
        << typeid(*p).name() << std::endl;

    return (0);
    }
remove_const_t<const int> == int

Wymagania

Nagłówek: <type_traits>

Przestrzeń nazw: std

Zobacz też

<type_traits>
Klasa add_const
Klasa remove_cv