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