has_nothrow_assign Class

,如果类型不引发分配,测试。

template<class Ty>
    struct has_nothrow_assign;

参数

  • Ty
    查询的类型。

备注

该类型特性的实例适合,如果类型 Ty 具有 nothrow 复制赋值运算符,否则它包含错误。

nothrow 功能是一个空引发说明符的功能,否则编译器可以否则定位功能不会引发异常。

示例

 

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

要求

**标题:**type_traits

命名空间: std

请参见

参考

<type_traits>

has_trivial_assign Class

其他资源

type_traits 成员