📌  相关文章
📜  C++中的std :: is_nothrow_move_assignable

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

< type_traits >头文件中提供了C++ STL的std :: is_nothrow_move_assignable模板。 C++ STL的std :: is_nothrow_move_assignable模板用于检查T是否为可移动分配的类型,并且众所周知它不会引发任何异常。如果T是移动可分配类型,则返回布尔值true,否则返回false。

头文件:

#include

模板类别:

template< class T >
struct is_move_assignable;

句法:

std::is_move_assignable::value 

参数:模板std :: is_nothrow_move_assignable接受单个参数T(Trait类),以检查T是否可无异常地移动分配。

返回值:模板std :: is_nothrow_move_assignable返回一个布尔变量,如下所示:

  • 正确:如果类型T是移动可分配类型。
  • False:如果类型T不是可移动分配的类型。

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

程序:

// C++ program to illustrate
// std::is_nothrow_move_assignable
#include 
#include 
using namespace std;
  
// Declare structures
struct A {
};
  
struct B {
    B& operator=(B&) = delete;
};
  
struct Ex1 {
    Ex1() {}
    Ex1(Ex1&&)
    {
        cout << "Throwing move constructor!";
    }
    Ex1(const Ex1&)
    {
        cout << "Throwing copy constructor!";
    }
};
  
struct Ex2 {
    Ex2() {}
    Ex2(Ex2&&) noexcept
    {
        cout << "Non-throwing move constructor!";
    }
    Ex2(const Ex2&) noexcept
    {
        cout << "Non-throwing copy constructor!";
    }
};
  
// Driver Code
int main()
{
    cout << boolalpha;
  
    // Check if int is a move
    // assignable or not
    cout << "int: "
         << is_nothrow_move_assignable::value
         << endl;
  
    // Check if struct A is a move
    // assignable or not
    cout << "struct A: "
         << is_nothrow_move_assignable::value
         << endl;
  
    // Check if struct B is a move
    // assignable or not
    cout << "struct B: "
         << is_nothrow_move_assignable::value
         << endl;
  
    // Check if struct Ex1 is a move
    // assignable or not
    cout << "struct Ex1: "
         << is_nothrow_move_assignable::value
         << endl;
  
    // Check if struct Ex2 is a move
    // assignable or not
    cout << "struct Ex2: "
         << is_nothrow_move_assignable::value
         << endl;
    return 0;
}
输出:
int: true
struct A: true
struct B: false
struct Ex1: false
struct Ex2: false

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

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