add_cv Class
Sprawia, że typ const/volatile od typu.
template<class Ty>
struct add_cv;
Parametry
- Ty
Typ, aby zmodyfikować.
Uwagi
Wystąpienie modyfikator typu posiada zmodyfikowany typ add_volatile Class< add_const Class<Ty> >.
Przykład
// std_tr1__type_traits__add_cv.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
int main()
{
std::add_cv<int>::type *p = (const volatile int *)0;
p = p; // to quiet "unused" warning
std::cout << "add_cv<int> == "
<< typeid(*p).name() << std::endl;
return (0);
}
Wymagania
Nagłówek: <type_traits>
Obszar nazw: std
Zobacz też
Informacje
Inne zasoby
<type_traits> Członkowie