<type_traits>头文件中提供了C++ STL的std::is_default_constructible模板。 C++ STL的std::is_default_constructible模板用于检查T是否是默认可构造的。可以构造默认构造函数而没有参数或初始化值。如果T是默认的可构造类型,则返回布尔值true,否则返回false。
头文件:
#include<type_traits>
模板类别:
template <class T> struct is_default_constructible;
用法:
std::is_default_constructible>class T>::value
参数:模板std::is_default_constructible接受单个参数T(Trait类),以检查T是否为默认的可构造类型。
返回值:该模板返回一个布尔变量,如下所示:
- True:如果类型T是默认可构造的。
- False:如果类型T不是默认可构造的。
下面是说明C /C++中的std::is_default_constructible模板的程序:
程序:
// C++ program to illustrate
// std::is_default_constructible
#include <bits/stdc++.h>
#include <type_traits>
using namespace std;
// Declare structures
struct A {
};
struct B {
int n;
B() = default;
};
// Class
class classA {
~classA() = delete;
};
// Inherited class
class classB:classA {
};
// Driver Code
int main()
{
cout << boolalpha;
// Check if int is default constructible?
cout << "int:"
<< is_default_constructible<int>::value
<< endl;
// Check if struct A is default constructible?
cout << "struct A:"
<< is_default_constructible<A>::value
<< endl;
// Check if struct B is default constructible?
cout << "struct B:"
<< is_default_constructible<B>::value
<< endl;
// Check if classA is default constructible?
cout << "classA:"
<< is_default_constructible<classA>::value
<< endl;
// Check if classB is default constructible?
cout << "classB:"
<< is_default_constructible<classB>::value
<< endl;
return 0;
}
输出:
int:true struct A:true struct B:true classA:false classB:false
参考: http://www.cplusplus.com/reference/type_traits/is_default_constructible/
相关用法
- C语言 strtok()、strtok_r()用法及代码示例
- C语言 memset()用法及代码示例
- C++ std::mismatch()用法及代码示例
- C++ wcscpy()用法及代码示例
- C++ wcscmp()用法及代码示例
- C++ ratio_equal()用法及代码示例
- C++ std::equal_to用法及代码示例
- C++ quick_exit()用法及代码示例
- C++ multiset lower_bound()用法及代码示例
- C++ multiset upper_bound()用法及代码示例
- C++ multiset max_size()用法及代码示例
- C++ forward_list max_size()用法及代码示例
- C++ std::allocator()用法及代码示例
- C++ array data()用法及代码示例
- C++ multiset size()用法及代码示例
- C++ ratio_not_equal()用法及代码示例
注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 std::is_default_constructible in C++ with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。