< type_traits >头文件中提供了C++ STL的std :: is_trivially_constructible模板。 C++ STL的std :: is_trivially_constructible模板用于检查给定类型T是否是带有参数集的平凡可构造类型。如果T是平凡可构造的类型,则它返回布尔值true,否则返回false。
头文件:
#include
模板类别:
template
struct is_trivially_constructible;
句法:
std::is_trivially_constructible::value
参数:模板std :: is_trivially_constructible接受两个参数:
- T:数据类型或未知范围的数组。
- Args:代表构造函数形式的参数类型的数据类型列表,其顺序与构造函数相同。
返回值:该模板返回一个布尔变量,如下所示:
- 正确:如果类型T是一个平凡的可构造类型。
- False:如果类型T不是平凡可构造的类型。
下面的程序说明了C / C++中的std :: is_trivially_constructible模板:
程序1:
// C++ program to illustrate
// std::is_trivially_constructible
#include
#include
using namespace std;
// Declare structures
struct Ex1 {
std::string str;
};
struct Ex2 {
int n;
Ex2() = default;
};
struct A {
// Constructor
A(int, int){};
};
// Driver Code
int main()
{
cout << boolalpha;
// Check if Ex1 is a trivally
// constructible or not
cout << "Ex1: "
<< is_trivially_constructible::value
<< endl;
// Check if struct Ex2 is a trivally
// constructible or not
cout << "Ex2: "
<< is_trivially_constructible::value
<< endl;
// Check if A(int, float) is a trivally
// constructible or not
cout << "A(int, int): "
<< is_trivially_constructible::value
<< endl;
return 0;
}
输出:
Ex1: false
Ex2: true
A(int, int): false
程式2:
// C++ program to illustrate
// std::is_trivially_constructible
#include
#include
using namespace std;
// Declare structures
struct X {
};
struct Y {
// Default Constructor
Y() {}
// Parameterized Constructor
Y(const X&)
noexcept {}
};
// Driver Code
int main()
{
cout << boolalpha;
// Check if int is a trivally
// constructible or not
cout << "int(): "
<< is_trivially_constructible::value
<< endl;
// Check if struct Y is a trivally
// constructible or not
cout << "Y(): "
<< is_trivially_constructible::value
<< endl;
// Check if Y(X) is a trivally
// constructible or not
cout << "Y(X): "
<< is_trivially_constructible::value
<< endl;
return 0;
}
输出:
int(): true
Y(): false
Y(X): false
参考: http://www.cplusplus.com/reference/type_traits/is_trivially_constructible/
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。