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


C++ std::is_constructible模板用法及代码示例


<type_traits>头文件中提供了C++ STL的std::is_constructible模板。 C++ STL的std::is_constructible模板用于检查给定类型T是否是带有参数集的可构造类型。如果T为可构造类型type,则返回布尔值true,否则返回false。

头文件:

#include<type_traits>

模板类别:

template <class T, class... Args>
struct is_constructible;

用法:

std::is_constructible::value

参数:



  • T:它代表数据类型。
  • Args:它表示数据类型T的列表。

返回值:该模板返回一个布尔变量,如下所示:

  • 正确:如果类型T是可构造的。
  • False:如果类型T是不可构造的。

下面是说明C /C++中std::is_constructible模板的程序:

程序:

// C++ program to illustrate 
// std::is_constructible example 
#include <bits/stdc++.h> 
#include <type_traits> 
using namespace std; 
  
// Declare structures 
struct A { 
}; 
  
struct T { 
    T(int, int){}; 
}; 
  
// Driver Code 
int main() 
{ 
    cout << std::boolalpha; 
  
    // Check if <int> is 
    // constructible or not 
    cout << "int:"
         << is_constructible<int>::value 
         << endl; 
  
    // Check if <int, float> is 
    // constructible or not 
    cout << "int(float):"
         << is_constructible<int, float>::value 
         << endl; 
  
    // Check if <int, float, float> is 
    // constructible or not 
    cout << "int(float, float):"
         << is_constructible<int, float, float>::value 
         << endl; 
  
    // Check if struct T is 
    // constructible or not 
    cout << "T:"
         << is_constructible<T>::value 
         << endl; 
  
    // Check if struct <T, int> is 
    // constructible or not 
    cout << "T(int):"
         << is_constructible<T, int>::value 
         << endl; 
  
    // Check if struct <T, int, int> is 
    // constructible or not 
    cout << "T(int, int):"
         << is_constructible<T, int, int>::value 
         << endl; 
    return 0; 
}
输出:
int:true
int(float):true
int(float, float):false
T:false
T(int):false
T(int, int):true

参考: http://www.cplusplus.com/reference/type_traits/is_constructible/




相关用法


注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 std::is_constructible template in C++ with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。