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


C++ std::is_trivially_copyable模板用法及代码示例


<type_traits>头文件中提供了C++ STL的std::is_trivially_copyable模板。 C++ STL的std::is_trivially_copyable模板用于检查T是否为平凡可复制的类型(存储连续的类型)。如果T是平凡可复制的类型,则它返回布尔值true,否则返回false。

头文件:

#include<type_traits>

模板类别:

template<class T>
struct is_trivially_copyable;

用法:

std::is_trivially_copyable<T>::value

参数:模板std::is_trivially_copyable接受单个参数T(Trait类),以检查T是否是平凡可复制的类型。



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

  • True:如果类型T是平凡可复制的。
  • False:如果类型T不是简单可复制的。

下面是演示C++中std::is_trivially_copyable模板的程序:

程序:

// C++ program to illustrate 
// std::is_trivially_copyable 
#include <bits/stdc++.h> 
#include <type_traits> 
using namespace std; 
  
// Declare structures 
struct X { 
    int a; 
}; 
  
struct Y { 
    Y(const Y&) {} 
}; 
  
struct Z { 
    virtual void GFG(); 
}; 
  
struct A { 
    ~A() = delete; 
}; 
  
struct B:A { 
}; 
  
// Driver Code 
int main() 
{ 
    cout << boolalpha; 
  
    // Check if X is a trivially 
    // copyable or not 
    cout << is_trivially_copyable<X>::value 
         << endl; 
  
    // Check if Y is a trivially 
    // copyable or not 
    cout << is_trivially_copyable<Y>::value 
         << endl; 
  
    // Check if Z is a trivially 
    // copyable or not 
    cout << is_trivially_copyable<Z>::value 
         << endl; 
  
    // Check if A is a trivially 
    // copyable or not 
    cout << is_trivially_copyable<A>::value 
         << endl; 
  
    // Check if B is a trivially 
    // copyable or not 
    cout << is_trivially_copyable<B>::value 
         << endl; 
  
    return 0; 
}
输出:
true
false
false
true
true




相关用法


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