当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ std::is_move_constructible用法及代码示例


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

头文件:

#include<type_traits>

模板类别:

template< class T >
struct is_move_convertible;

用法:

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

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



返回值:

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

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

程序:

// C++ program to illustrate 
// std::is_move_constructible 
#include <bits/stdc++.h> 
#include <type_traits> 
  
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<char>::value 
         << endl; 
  
    // Check if struct A is move constructible or not 
    cout << "struct A:"
         << is_move_constructible<A>::value 
         << endl; 
  
    // Check if struct B is move constructible or not 
    cout << "struct B:"
         << is_move_constructible<B>::value 
         << endl; 
  
    // Check if class C is move constructible or not 
    cout << "class C:"
         << is_move_constructible<C>::value 
         << endl; 
  
    // Check if class D is move constructible or not 
    cout << "class D:"
         << is_move_constructible<D>::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/




相关用法


注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 std::is_move_constructible in C++ with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。