C++ std::is_move_assignable及示例
C++ STL中的 std::is_move_assignable 模板存在于 < type_traits>头文件中。C++ STL中的 std::is_move_assignable 模板用于检查 T 是否是可移动赋值类型(可以被分配给同一类型的右值引用),如果是则返回布尔值true,否则返回false。
头文件:
#include <type_traits>
模板类:
template <class T>
struct is_move_assignable;
语法:
std::is_move_assignable<T>::value
参数: 模板 std::is_move_assignable 接受一个参数 T(特质类) ,以检查 T 是否是可移动赋值类型。
返回值: 此模板将返回布尔变量,如下所示:
- 真: 如果类型 T 是可移动赋值类型。
- 假: 如果类型 T 不是可移动赋值类型。
下面是在C / C ++中演示 std::is_move_assignable模板 的程序:
程序:
// C++ program to illustrate
// std::is_move_assignable
#include <bits/stdc++.h>
#include <type_traits>
using namespace std;
// Declare structures
struct A {
};
struct B {
B& operator=(B&) = delete;
};
struct C {
~C() = delete;
};
// Driver Code
int main()
{
cout << boolalpha;
// Check if int is move
// assignable or not
cout << "int: "
<< is_move_assignable<int>::value
<< endl;
// Check if struct A is move
// assignable or not
cout << "struct A: "
<< is_move_assignable<A>::value
<< endl;
// Check if struct B is move
// assignable or not
cout << "struct B: "
<< is_move_assignable<B>::value
<< endl;
// Check if struct C is move
// assignable or not
cout << "struct C: "
<< is_move_assignable<C>::value
<< endl;
// Declare an map
unordered_multimap<int, string> m;
m.insert({ 1, "GfG" });
// Check if map m is move
// assignable or not?
cout << "Map m: "
<< is_move_assignable<decltype(*m.begin())>::value;
return 0;
}
int: true
struct A: true
struct B: false
struct C: true
Map m: true