aligned_storage 类
生成适当对齐的类型。
template<std::size_t Len, std::size_t Align>
struct aligned_storage {
typedef aligned-type type;
};
template<size_t _Len,
size_t _Align = alignment_of<max_align_t>::value>
using aligned_storage_t = typename aligned_storage<_Len, _Align>::type;
参数
Len
对象大小。Align
对象对齐方式。
备注
嵌套的 typedef type 与对齐方式为 Align、大小为 Len 的 POD 类型为同义词。 对于某些 Ty1 类型,Align 必须等于 alignment_of<Ty1>::value。
示例
#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