remove_const
sınıfı
Türünden tür olmayanconst
bir tür yapar.
Sözdizimi
template <class T>
struct remove_const;
template <class T>
using remove_const_t = typename remove_const<T>::type;
Parametreler
T
Değiştirilecek tür.
Açıklamalar
Örneğinderemove_const<T>
, biçiminde const T1
olduğu zaman T
olan değiştirilmiş bir tür T1
bulunur, aksi takdirde T
.
Örnek
#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
Gereksinimler
Üstbilgi: <type_traits>
Ad alanı: std