has_trivial_destructor Class
,如果类型具有常用的析构函数,测试。
template<class Ty>
struct has_trivial_destructor;
参数
- Ty
查询的类型。
备注
该类型特性的实例适合,如果类型 Ty 是一个无足轻重的析构函数的类,否则它包含错误。
类的 Ty 一个析构函数是无足轻重的,则:
它是一个隐式声明的析构函数
类 Ty 的任何直接基具有常用的析构函数
类类型的非静态数据成员类具有常用的析构函数
类的类型数组的所有非静态数据成员类具有常用的析构函数
示例
// std_tr1__type_traits__has_trivial_destructor.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)
{
}
~throws()
{
}
int val;
};
int main()
{
std::cout << "has_trivial_destructor<trivial> == " << std::boolalpha
<< std::has_trivial_destructor<trivial>::value << std::endl;
std::cout << "has_trivial_destructor<throws> == " << std::boolalpha
<< std::has_trivial_destructor<throws>::value << std::endl;
return (0);
}
要求
**标题:**type_traits
命名空间: std