Compartilhar via


Classe aligned_storage

Cria tipo alinhado adequadamente.

Sintaxe

template <std::size_t Len, std::size_t Align>
struct aligned_storage;

template <std::size_t Len, std::size_t Align = alignment_of<max_align_t>::value>
using aligned_storage_t = typename aligned_storage<Len, Align>::type;

Parâmetros

Len
O tamanho do objeto.

Alinhar
O alinhamento do objeto.

Comentários

O typedef do membro de modelo type é sinônimo de um tipo POD com alinhamento Align e tamanho Len. Align deve ser igual a alignment_of<T>::value para algum tipo T ou para o alinhamento padrão.

Exemplo

#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);
    }
alignment_of<int> == 4
aligned to double == 8

Requisitos

Cabeçalho:<type_traits>

Namespace: std

Confira também

<type_traits>
Classe alignment_of