當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ std::is_nothrow_copy_constructible用法及代碼示例


<type_traits>頭文件中提供了C++ STL的std::is_nothrow_copy_constructible模板。 C++ STL的std::is_nothrow_copy_constructible模板用於檢查T是否為可複製構造類型,並且眾所周知它不會引發任何異常。如果T是可複製構造類型,則返回布爾值true,否則返回false。

頭文件:

#include<type_traits>

模板類別:

template <class T>
struct is_nothrow_copy_constructible

用法:

is_nothrow_copy_constructible<T>::value

參數:模板std::is_nothrow_copy_constructible接受單個參數T(Trait類),以檢查T是否為可複製構造類型。



返回值:模板std::is_nothrow_copy_constructible返回一個布爾變量,如下所示:

  • True:如果類型T是可複製構造類型。
  • False:如果類型T不是可複製構造類型。

下麵是演示C++中std::is_nothrow_copy_constructible的程序:

程序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

程序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

參考: http://www.cplusplus.com/reference/type_traits/is_nothrow_copy_constructible/




相關用法


注:本文由純淨天空篩選整理自bansal_rtk_大神的英文原創作品 std::is_nothrow_copy_constructible in C++ with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。