< type_traits >头文件中提供了C++ STL的std :: is_trivially_copyable模板。 C++ STL的std :: is_trivially_copyable模板用于检查T是否为平凡可复制类型(其存储是连续的类型)。如果T是平凡可复制的类型,则它返回布尔值true,否则返回false。
头文件:
#include
模板类别:
template
struct is_trivially_copyable;
句法:
std::is_trivially_copyable::value
参数:模板std :: is_trivially_copyable接受单个参数T(Trait类),以检查T是否为平凡可复制类型。
返回值:模板std :: is_trivially_copyable返回一个布尔变量,如下所示:
- 正确:如果类型T是平凡可复制的。
- False:如果类型T不是平凡的可复制的。
下面是演示C++中std :: is_trivially_copyable模板的程序:
程序:
// C++ program to illustrate
// std::is_trivially_copyable
#include
#include
using namespace std;
// Declare structures
struct X {
int a;
};
struct Y {
Y(const Y&) {}
};
struct Z {
virtual void GFG();
};
struct A {
~A() = delete;
};
struct B : A {
};
// Driver Code
int main()
{
cout << boolalpha;
// Check if X is a trivially
// copyable or not
cout << is_trivially_copyable::value
<< endl;
// Check if Y is a trivially
// copyable or not
cout << is_trivially_copyable::value
<< endl;
// Check if Z is a trivially
// copyable or not
cout << is_trivially_copyable::value
<< endl;
// Check if A is a trivially
// copyable or not
cout << is_trivially_copyable::value
<< endl;
// Check if B is a trivially
// copyable or not
cout << is_trivially_copyable::value
<< endl;
return 0;
}
输出:
true
false
false
true
true
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。