std::add_volatile en C++ con ejemplos

La plantilla std::add_volatile de C++ STL está presente en el archivo de encabezado <type_traits> . La plantilla std::add_volatile de C++ STL se usa para obtener el tipo T con calificación volátil. La función std::is_volatile se utiliza para comprobar si el tipo T está calificado como volátil o no.

Archivo de cabecera:

#include<type_traits>

Clase de plantilla:

template < class T >
struct add_volatile;

Sintaxis:

std::add_volatile<T>::value

Parámetro: la plantilla std::add_volatile acepta un solo parámetro T (clase de rasgo) que se utiliza para obtener el tipo T con calificación volátil.

A continuación se muestra el programa para demostrar std::add_volatile: en C++:

Programa:

// C++ program to illustrate
// std::add_volatile
#include <bits/stdc++.h>
#include <type_traits>
using namespace std;
  
// Driver Code
int main()
{
  
    // Declare variable of type
    // volatile (int, const int, const int*,
    // int * const and const int&)
    typedef add_volatile<int>::type A;
    typedef add_volatile<volatile int>::type B;
    typedef add_volatile<int* volatile>::type C;
    typedef add_volatile<volatile int*>::type D;
    typedef add_volatile<volatile int&>::type E;
  
    cout << boolalpha;
  
    // Checking the volatileness of
    // the above declared variable
    cout << "checking volatileness:"
         << endl;
  
    cout << "A: "
         << is_volatile<A>::value
         << endl;
  
    cout << "B: "
         << is_volatile<B>::value
         << endl;
  
    cout << "C: "
         << is_volatile<C>::value
         << endl;
  
    cout << "D: "
         << is_volatile<D>::value
         << endl;
  
    cout << "E: "
         << is_volatile<E>::value
         << endl;
  
    return 0;
}
Producción:

checking volatileness:
A: true
B: true
C: true
D: true
E: false

Referencia: http://www.cplusplus.com/reference/type_traits/add_volatile/

Publicación traducida automáticamente

Artículo escrito por bansal_rtk_ y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *