Classe aligned_storage
Faz com que tipo alinhado adequadamente.
template<std::size_t Len, std::size_t Align>
struct aligned_storage {
typedef aligned-type type;
};
Parâmetros
Len
O dimensionar do objeto.Align
O alinhamento do objeto.
Comentários
O typedef aninhados type é um sinônimo de um tipo POD com alinhamento Align e o dimensionar Len. Align deve ser igual a alignment_of<Ty1>::value para algum tipo Ty1.
Exemplo
// std_tr1__type_traits__aligned_storage.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
typedef std::tr1::aligned_storage<sizeof (int),
std::tr1::alignment_of<double>::value>::type New_type;
int main()
{
std::cout << "alignment_of<int> == "
<< std::tr1::alignment_of<int>::value << std::endl;
std::cout << "aligned to double == "
<< std::tr1::alignment_of<New_type>::value << std::endl;
return (0);
}
alignment_of<int> == 4 aligned to double == 8
Requisitos
Cabeçalho:<type_traits>
Namespace: std::tr1