共用方式為


has_trivial_copy Class

測試,如果型別具有簡單的複製建構函式。

template<class Ty>
    struct has_trivial_copy;

參數

  • Ty
    查詢的型別。

備註

這個型別的執行個體述詞套用至型別,則這個 Ty 是 trivial 複製建構函式的類別,否則它來儲存錯誤。

類別的 Ty 的複製建構函式微不足道,如果:

隱含宣告

類別 Ty 具有虛擬函式 (Virtual Function)

類別 Ty 沒有虛擬基底

類別 Ty 的所有直接基底有簡單的複製建構函式

類別型別的所有靜態資料成員類別有簡單的複製建構函式

類別的型別陣列中的所有非靜態資料成員類別有簡單的複製建構函式

範例

 

// std_tr1__type_traits__has_trivial_copy.cpp 
// compile with: /EHsc 
#include <type_traits> 
#include <iostream> 
 
struct trivial 
    { 
    int val; 
    }; 
 
struct throws 
    { 
    throws() throw(int) 
        { 
        } 
 
    throws(const throws&) throw(int) 
        { 
        } 
 
    throws& operator=(const throws&) throw(int) 
        { 
        } 
 
    int val; 
    }; 
 
int main() 
    { 
    std::cout << "has_trivial_copy<trivial> == " << std::boolalpha 
        << std::has_trivial_copy<trivial>::value << std::endl; 
    std::cout << "has_trivial_copy<throws> == " << std::boolalpha 
        << std::has_trivial_copy<throws>::value << std::endl; 
 
    return (0); 
    } 
 
  

需求

標題: <type_traits>

命名空間: std

請參閱

參考

<type_traits>

has_nothrow_copy Class