当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。