Compartilhar via


Classe alignment_of

Obtém o alinhamento do tipo.

template<class Ty>
    struct alignment_of;

Parâmetros

  • Ty
    O tipo para consulte.

Comentários

A consulta do tipo mantém o valor do alinhamento do tipo Ty.

Exemplo

 

// 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

Cabeçalho: <type_traits>

Namespace: std

Consulte também

Referência

<type_traits>

Classe aligned_storage

Outros recursos

<type_traits> Membros