La plantilla std::add_cv de C++ STL está presente en el archivo de encabezado <type_traits> . La plantilla std::add_cv de C++ STL se usa para obtener el tipo T con calificación constante y volátil. La función std::is_same::value se utiliza para comprobar si T es una calificación constante y volátil o no.
Archivo de cabecera:
#include<type_traits>
Clase de plantilla:
template< class T > struct add_cv
Sintaxis:
std::add_const::type
Parámetro: La plantilla std::add_cv acepta un solo parámetro T (clase de rasgo) para verificar si T es constante y volátil calificado o no.
A continuación se muestra el programa para demostrar std::add_cv en C++:
Programa:
// C++ program to illustrate // std::add_cv #include <bits/stdc++.h> #include <type_traits> using namespace std; // Driver Code int main() { // Declare variables of int, const, // volatile, const volatile using add_cv typedef add_cv<int>::type A; typedef add_cv<const int>::type B; typedef add_cv<volatile int>::type C; typedef add_cv<const volatile int>::type D; cout << boolalpha; // Check the type of variable declared // above is volatile or not 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; return 0; }
typedefs of const volatile int: A: true B: true C: true D: true
Referencia: http://www.cplusplus.com/reference/type_traits/add_cv/
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