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


C++ std::is_nothrow_default_constructible用法及代码示例


<type_traits>头文件中提供了C++ STL的std::is_nothrow_default_constructible模板。 C++ STL的std::is_nothrow_default_constructible模板用于检查给定的类型T是否为默认的可构造类型,并且众所周知它不会引发任何异常。如果T是默认的可构造类型,则返回布尔值true,否则返回false。

头文件:

#include<type_traits>

模板类别:

template <class T>
struct is_nothrow_default_constructible;

用法:

std::is_nothrow_default_constructible::value

参数:模板std::is_nothrow_default_constructible接受单个参数T(Trait类),以检查T是否为默认的可构造类型。



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

  • 正确:如果类型T为is_nothrow_default_constructible。
  • False:如果类型T不是is_nothrow_default_constructible。

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

程序1:

// C++ program to illustrate 
// std::is_nothrow_default_constructible 
#include <bits/stdc++.h> 
#include <type_traits> 
using namespace std; 
  
// Declare structures 
struct X { 
    X(int, float){}; 
}; 
  
struct Y { 
    Y(const Y&) {} 
}; 
  
struct Z { 
    int n; 
    Z() = default; 
}; 
  
// Driver Code 
int main() 
{ 
  
    cout << boolalpha; 
  
    // Check if int is nothrow default 
    // constructible or not 
    cout << "int:"
         << is_nothrow_default_constructible<int>::value 
         << endl; 
  
    // Check if struct X is nothrow default 
    // constructible or not 
    cout << "struct X:"
         << is_nothrow_default_constructible<X>::value 
         << endl; 
  
    // Check if struct Y is nothrow default 
    // constructible or not 
    cout << "struct Y:"
         << is_nothrow_default_constructible<Y>::value 
         << endl; 
  
    // Check if struct Z is nothrow default 
    // constructible or not 
    cout << "struct Z:"
         << is_nothrow_default_constructible<Z>::value 
         << endl; 
  
    // Check if constructor X(int, float) is 
    // nothrow default constructible or not 
    cout << "constructor X(int, float):"
         << is_nothrow_default_constructible<X(int, float)>::value 
         << endl; 
    return 0; 
}
输出:
int:true
struct X:false
struct Y:false
struct Z:true
constructor X(int, float):false

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




相关用法


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