Udostępnij za pośrednictwem


aligned_storage Class

Sprawia, że typ odpowiednio wyrównane.

template<std::size_t Len, std::size_t Align>
    struct aligned_storage {
        typedef aligned-type type;
        };

Parametry

  • Len
    Rozmiar obiektu.

  • Align
    Wyrównywanie obiektu.

Uwagi

Zagnieżdżone typedef type jest synonimem typu POD z wyrównaniem do Align i rozmiar Len.Alignmusi być równa alignment_of<Ty1>::value dla niektórych typów Ty1.

Przykład

 

// std_tr1__type_traits__aligned_storage.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); 
    } 
 
  

Wymagania

Nagłówek: <type_traits>

Obszar nazw: std

Zobacz też

Informacje

<type_traits>

alignment_of Class

Inne zasoby

<type_traits> Członkowie