头文件:
#include
模板类别:
template
struct is_trivially_copy_assignable
句法:
is_trivially_copy_assignable::value
参数:模板std :: is_trivially_copy_assignable接受单个参数T(Trait类),以检查T是否为普通复制可分配类型。
返回值:模板std :: is_trivially_copy_assignable返回一个布尔变量,如下所示:
- 正确:如果类型T是可分配的琐碎拷贝。
- False:如果类型T不是普通副本可分配的。
下面是演示C++中std :: is_trivially_copy_assignable的程序:
程序1:
// C++ program to illustrate
// std::is_trivially_copy_assignable
#include
#include
using namespace std;
// Declare Structures
struct X {
};
struct Y {
Y& operator=(const Y&)
{
return *this;
}
};
// Driver Code
int main()
{
cout << std::boolalpha;
cout << "int? "
<< is_trivially_copy_assignable::value
<< endl;
cout << "X? "
<< is_trivially_copy_assignable::value
<< endl;
cout << "Y? "
<< is_trivially_copy_assignable::value
<< endl;
cout << "int[2]? "
<< is_trivially_copy_assignable::value
<< endl;
return 0;
}
输出:
int? true
X? true
Y? false
int[2]? false
参考: http://www.cplusplus.com/reference/type_traits/is_trivially_copy_assignable/
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。