is_pod Class
,如果类型是 POD,测试。
template<class Ty>
struct is_pod;
参数
- Ty
查询的类型。
备注
,如果类型 Ty 是纯旧数据,is_pod<Ty>::value 是 true (POD)。 否则它是 false。
算术类型、枚举类型、指针类型和指向成员的指针类型是 POD。
POD 类型的一个 cv 限定版本本身 POD 类型。
数组 POD 本身 POD。
结构或联合,所有非静态数据成员是 POD,本身 POD,如果有:
没有用户声明的构造函数。
没有私有或受保护的非静态数据成员。
没有基类。
没有虚函数。
非静态数据成员不引用类型。
没有用户定义的复制赋值运算符。
没有用户定义的析构函数。
因此,您可以递归生成包含 POD 结构和数组的 POD 结构和数组。
示例
// std_tr1__type_traits__is_pod.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
struct trivial
{
int val;
};
struct throws
{
throws() throw(int)
{
}
throws(const throws&) throw(int)
{
}
throws& operator=(const throws&) throw(int)
{
}
int val;
};
int main()
{
std::cout << "is_pod<trivial> == " << std::boolalpha
<< std::is_pod<trivial>::value << std::endl;
std::cout << "is_pod<int> == " << std::boolalpha
<< std::is_pod<int>::value << std::endl;
std::cout << "is_pod<throws> == " << std::boolalpha
<< std::is_pod<throws>::value << std::endl;
return (0);
}
要求
**标题:**type_traits
命名空间: std