alignment_of (Clase)
Obtiene la alineación de tipo.
template<class Ty>
struct alignment_of;
Parámetros
- Ty
El tipo a ver.
Comentarios
La consulta de tipo contiene el valor la alineación del tipo Ty.
Ejemplo
// std_tr1__type_traits__alignment_of.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
typedef std::aligned_storage<sizeof (int),
std::alignment_of<double>::value>::type New_type;
int main()
{
std::cout << "alignment_of<int> == "
<< std::alignment_of<int>::value << std::endl;
std::cout << "aligned to double == "
<< std::alignment_of<New_type>::value << std::endl;
return (0);
}
Requisitos
Encabezado: <type_traits>
Espacio de nombres: std