Udostępnij za pośrednictwem


remove_volatile — Klasa

Tworzy typ inny niż volatile z typu.

Składnia

template <class T>
struct remove_volatile;

template <class T>
using remove_volatile_t = typename remove_volatile<T>::type;

Parametry

T
Typ do modyfikacji.

Uwagi

Wystąpienie remove_volatile<T> obiektu przechowuje zmodyfikowany typ, który występuje T1 , gdy T ma postać volatile T1, w przeciwnym razie T.

Przykład

#include <type_traits>
#include <iostream>

int main()
    {
    int *p = (std::remove_volatile_t<volatile int> *)0;

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

    return (0);
    }
remove_volatile_t<volatile int> == int

Wymagania

Nagłówek:<type_traits>

Przestrzeń nazw: std

Zobacz też

<type_traits>
add_volatile, klasa