La plantilla std::is_nothrow_copy_construtible de C++ STL está presente en el archivo de encabezado <type_traits> . La plantilla std::is_nothrow_copy_construtible de C++ STL se utiliza para comprobar si T es de tipo copy construible o no y esto se sabe que no arroja ninguna excepción. Devuelve el valor booleano verdadero si T es de tipo copia construible, de lo contrario devuelve falso.
Archivo de cabecera:
#include<type_traits>
Clase de plantilla:
template <class T> struct is_nothrow_copy_constructible
Sintaxis:
is_nothrow_copy_constructible<T>::value
Parámetro: la plantilla std::is_nothrow_copy_constructible acepta un solo parámetro T (clase de rasgo) para verificar si T es un tipo de copia construible o no.
Valor devuelto: la plantilla std::is_nothrow_copy_construcible devuelve una variable booleana como se muestra a continuación:
- Verdadero: si el tipo T es un tipo construible de copia.
- Falso: si el tipo T no es un tipo construible de copia.
A continuación se muestra el programa para demostrar std::is_nothrow_copy_construcible en C++ :
Programa 1:
// C++ program to illustrate // std::is_nothrow_copy_constructible #include <bits/stdc++.h> #include <type_traits> using namespace std; // Define Classes class X { }; class Y { Y(const Y&) {} }; // Driver Code int main() { cout << boolalpha; // Check if int is no throw copy // constructible cout << "int: " << is_nothrow_copy_constructible<int>::value << endl; // Check if class X is no throw copy // constructible cout << "class X: " << is_nothrow_copy_constructible<X>::value << endl; // Check if class Y is no throw copy // constructible cout << "class Y: " << is_nothrow_copy_constructible<Y>::value << endl; return 0; }
int: true class X: true class Y: false
Programa 2:
// C++ program to illustrate // std::is_nothrow_copy_constructible #include <iostream> #include <type_traits> using namespace std; // Declare structures struct A { }; struct B { B(const B&) {} }; struct C { C(const C&) noexcept {} }; // Driver Code int main() { cout << boolalpha; cout << "is_nothrow_copy_constructible:" << endl; cout << "int is_nothrow_copy_constructible? " << is_nothrow_copy_constructible<int>::value << endl; cout << "A is_nothrow_copy_constructible? " << is_nothrow_copy_constructible<A>::value << endl; cout << "B is_nothrow_copy_constructible? " << is_nothrow_copy_constructible<B>::value << endl; cout << "C is_nothrow_copy_constructible? " << is_nothrow_copy_constructible<C>::value << endl; return 0; }
is_nothrow_copy_constructible: int is_nothrow_copy_constructible? true A is_nothrow_copy_constructible? true B is_nothrow_copy_constructible? false C is_nothrow_copy_constructible? true
Referencia: http://www.cplusplus.com/reference/type_traits/is_nothrow_copy_construcible/
Publicación traducida automáticamente
Artículo escrito por bansal_rtk_ y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA