La plantilla std::remove_const de C++ STL está presente en el archivo de encabezado <type_traits> . La plantilla std::remove_const de C++ STL se usa para obtener el tipo T sin calificación const. Devuelve el valor booleano verdadero si T no tiene const calificado, de lo contrario devuelve falso. A continuación se muestra la sintaxis para el mismo:
Archivo de cabecera:
#include<type_traits>
Clase de plantilla:
template <class T> struct remove_const;
Sintaxis:
std::remove_const<T>::value
Parámetro: esta plantilla std::remove_const acepta un solo parámetro T (clase de rasgo) para verificar si T está calificado sin const o no.
Valor devuelto: La plantilla std::remove_const devuelve un valor booleano:
- Verdadero: si el tipo T no tiene const calificado.
- Falso: si el tipo T está calificado con const.
A continuación se muestra el programa para demostrar std::remove_const en C++ :
Programa:
// C++ program to illustrate // std::remove_const #include <bits/stdc++.h> #include <type_traits> using namespace std; // Driver Code int main() { // Declare variable of type // int, const int, const int*, // int * const and const int& typedef remove_const<int>::type A; typedef remove_const<const int>::type B; typedef remove_const<const int*>::type C; typedef remove_const<int* const>::type D; typedef remove_const<const int&>::type E; cout << std::boolalpha; // Checking const of the above // declared variables cout << "A is without const int? " << is_same<int, A>::value << endl; cout << "B is without const int? " << is_same<int, B>::value << endl; cout << "C is without const int? " << is_same<int, C>::value << endl; cout << "D is without const int? " << is_same<int, D>::value << endl; cout << "E is without const int? " << is_same<const int, E>::value << endl; return 0; }
A is without const int? true B is without const int? true C is without const int? false D is without const int? false E is without const int? false
Referencia: http://www.cplusplus.com/reference/type_traits/remove_const/
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