has_nothrow_assign Class

Testes, se o tipo não joga em atribuir.

template<class Ty>
    struct has_nothrow_assign;

Parâmetros

  • Ty
    O tipo de consulta.

Comentários

Uma instância do predicado tipo armazena true se o tipo de Ty tem um nothrow cópia operador de atribuição, caso contrário, ele mantém false.

Uma função nothrow é o especificador de lançar uma função que tem um vazio ou uma função que o compilador pode determinar caso contrário não lançará uma exceção.

Exemplo

 

// 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); 
    } 
 
  

Requisitos

Cabeçalho: <type_traits>

Namespace: std

Consulte também

Referência

<type_traits>

has_trivial_assign Class

Outros recursos

<type_traits> Membros