has_trivial_copy Class

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

template<class Ty>
    struct has_trivial_copy;

参数

  • Ty
    查询的类型。

备注

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

选件类的 Ty 一个复制构造函数是无足轻重的,则:

它隐式声明

选件类 Ty 没有虚函数

选件类 Ty 没有虚拟基

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

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

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

示例

 

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

要求

标头: <type_traits>

命名空间: std

请参见

参考

<type_traits>

has_nothrow_copy Class