共用方式為


alignment_of 類別

取得型別的對齊方式。

template<class Ty>
    struct alignment_of;

參數

  • Ty
    查詢的型別。

備註

這個型別查詢表示 Ty型別的對齊的值。

範例

 

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

需求

標題: <type_traits>

命名空間: std

請參閱

參考

<type_traits>

aligned_storage 類別

其他資源

<type_traits> 成員