has_trivial_constructor Class

,如果类型具有常用的默认构造函数,测试。

template<class Ty>
    struct has_trivial_constructor;

参数

  • Ty
    查询的类型。

备注

该类型特性的实例适合,如果类型 Ty 是一个无足轻重的构造函数的类,否则它包含错误。

类的 Ty 构造函数是无足轻重的,则:

它是一个隐式声明的默认构造函数

类 Ty 没有虚函数

类 Ty 没有虚拟基

类 Ty 的任何直接基具有常用的构造函数

类类型的非静态数据成员类具有常用的构造函数

类的类型数组的所有非静态数据成员类具有常用的构造函数

示例

 

// std_tr1__type_traits__has_trivial_constructor.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 << "has_trivial_constructor<trivial> == " << std::boolalpha 
        << std::has_trivial_constructor<trivial>::value << std::endl; 
    std::cout << "has_trivial_constructor<throws> == " << std::boolalpha 
        << std::has_trivial_constructor<throws>::value << std::endl; 
 
    return (0); 
    } 
 
  

要求

**标题:**type_traits

命名空间: std

请参见

参考

<type_traits>

has_nothrow_constructor Class

has_trivial_destructor Class

其他资源

type_traits 成员