<type_traits>头文件中存在C++ STL的std::is_assignable模板。 C++ STL的std::is_assignable模板用于检查是否可以将B类型的值分配给A。它返回布尔值true或false。以下是相同的语法:
头文件:
#include<type_traits>
用法:
template <class A, class B> struct is_assignable;;
参数:它接受以下参数:
- A:它代表接收分配的对象的类型。
- B:它表示提供值的对象的类型。
返回值:模板std::is_assignable():返回布尔值,即true或false。
以下是演示std::is_assignable()的程序:
程序1:
// C++ program to illustrate
// is_assignable example
#include <bits/stdc++.h>
#include <type_traits>
using namespace std;
struct A {
};
struct B {
B& operator=(const A&)
{
return *this;
}
};
// Driver Code
int main()
{
cout << boolalpha;
cout << "is_assignable:" << endl;
cout << "A = B:"
<< is_assignable<A, B>::value
<< endl;
cout << "B = A:"
<< is_assignable<B, A>::value
<< endl;
return 0;
}
输出:
is_assignable: A = B:false B = A:true
程序2:
// C++ program to illustrate
// is_assignable example
#include <bits/stdc++.h>
#include <type_traits>
using namespace std;
struct B {
};
struct A {
A& operator=(const B&)
{
return *this;
}
};
// Driver Code
int main()
{
cout << boolalpha;
cout << "is_assignable:" << endl;
cout << "A = B:"
<< is_assignable<A, B>::value
<< endl;
cout << "B = A:"
<< is_assignable<B, A>::value
<< endl;
return 0;
}
输出:
is_assignable: A = B:true B = A:false
参考: http://www.cplusplus.com/reference/type_traits/is_assignable/
相关用法
- C++ std::is_function模板用法及代码示例
- C++ std::is_convertible模板用法及代码示例
- C++ std::is_constructible模板用法及代码示例
- C++ std::is_base_of模板用法及代码示例
- C++ std::is_member_object_pointer模板用法及代码示例
- C++ std::is_trivially_copyable模板用法及代码示例
- C++ std::is_same模板用法及代码示例
- C++ std::is_member_function_pointer模板用法及代码示例
- C++ is_rvalue_reference用法及代码示例
- C++ is_fundamental用法及代码示例
注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 std::is_assignable template in C++ with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。