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