📌  相关文章
📜  Cd中带有示例的std :: is_move_constructible

📅  最后修改于: 2021-05-30 13:05:03             🧑  作者: Mango

< type_traits >头文件中提供了C++ STL的std :: is_move_constructible模板。 C++ STL的std :: is_move_constructible模板用于检查T是否可移动构造(可以从其类型的右值引用构造)。它返回布尔值true或false。

头文件:

#include

模板类别:

template< class T >
struct is_move_convertible;

句法:

std::is_move_constructible< datatype >::value << '\n'

参数:模板std :: is_move_constructible接受单个参数T (Trait类),以检查T是否为可移动构造类型。

返回值:

  • True:如果给定的数据类型Tis_move_constructible
  • False:如果给定的数据类型T不是is_move_constructible

下面是演示std :: is_move_constructible的程序:

程序:

// C++ program to illustrate
// std::is_move_constructible
#include 
#include 
  
using namespace std;
  
// Declare structures
struct B {
};
struct A {
    A& operator=(A&) = delete;
};
  
class C {
    int n;
    C(C&&) = default;
};
  
class D {
    D(const D&) {}
};
  
// Driver Code
int main()
{
    cout << boolalpha;
  
    // Check if char is move constructible or not
    cout << "char: "
         << is_move_constructible::value
         << endl;
  
    // Check if struct A is move constructible or not
    cout << "struct A: "
         << is_move_constructible::value
         << endl;
  
    // Check if struct B is move constructible or not
    cout << "struct B: "
         << is_move_constructible::value
         << endl;
  
    // Check if class C is move constructible or not
    cout << "class C: "
         << is_move_constructible::value
         << endl;
  
    // Check if class D is move constructible or not
    cout << "class D: "
         << is_move_constructible::value
         << endl;
    return 0;
}
输出:
char: true
struct A: true
struct B: true
class C: false
class D: false

参考: http://www.cplusplus.com/reference/type_traits/is_move_constructible/

要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”