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


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


<type_traits>頭文件中提供了C++ STL的std::is_copy_constructible模板。 C++ STL的std::is_copy_constructible模板用於檢查T是否可複製構造。如果T是可複製構造類型,則返回布爾值true,否則返回false。

頭文件:

#include<type_traits>

模板類別:

template <class T> struct is_copy_constructible;

用法:

std::is_copy_constructible <int>::value
std::is_copy_constructible>class T>::value

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



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

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

以下示例程序旨在說明C /C++中的std::is_copy_constructiblev模板:

程序:

// C++ program to illustrate 
// std::is_copy_constructible example 
#include <bits/stdc++.h> 
#include <type_traits> 
using namespace std; 
  
// Declare structures 
struct B { 
}; 
struct A { 
    A& operator=(A&) = delete; 
}; 
  
// Driver Code 
int main() 
{ 
    cout << boolalpha; 
  
    // Check that if char is copy 
    // constructible or not 
    cout << "char:"
         << is_copy_constructible<char>::value 
         << endl; 
  
    // Check that if int is copy 
    // constructible or not 
    cout << "int:"
         << is_copy_constructible<int>::value 
         << endl; 
  
    // Check that if int[2] is copy 
    // constructible or not 
    cout << "int[2]:"
         << is_copy_constructible<int[2]>::value 
         << endl; 
  
    // Check that if struct A is copy 
    // constructible or not 
    cout << "struct A:"
         << is_copy_constructible<A>::value 
         << endl; 
  
    // Check that if struct B is copy 
    // constructible or not 
    cout << "struct B:"
         << is_copy_constructible<B>::value 
         << endl; 
  
    return 0; 
}
輸出:
char:true
int:true
int[2]:false
struct A:true
struct B:true

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




相關用法


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