aligned_storage Class
可適當地對齊的型別。
template<std::size_t Len, std::size_t Align>
struct aligned_storage {
typedef aligned-type type;
};
參數
Len
物件的大小。Align
物件的對齊方式。
備註
巢狀的 typedef type是 POD 型別與對齊方式的Align和大小Len。 Align必須等於alignment_of<Ty1>::value某種形式Ty1。
範例
// 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);
}
需求
標頭: <type_traits>
Namespace: 標準