has_trivial_assign Class
將指定的測試類型都有小事一樁。
template<class Ty>
struct has_trivial_assign;
參數
- Ty
要查詢的類型。
備註
如果為 true,則保留型別述詞的執行個體的型別Ty是一種類別具有一般複製指派運算子,否則它會保留,則為 false。
類別的複製設定運算子Ty是小事一樁如果:
隱含宣告
類別Ty有沒有虛擬函式
類別Ty有沒有虛擬基底
所有的直接基底類別Ty有一般的複製設定運算子
類別型別的所有非靜態資料成員的類別有一般的複製設定運算子
類別的型別陣列的所有非靜態資料成員的類別有一般的複製設定運算子
範例
// std_tr1__type_traits__has_trivial_assign.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_assign<trivial> == " << std::boolalpha
<< std::has_trivial_assign<trivial>::value << std::endl;
std::cout << "has_trivial_assign<throws> == " << std::boolalpha
<< std::has_trivial_assign<throws>::value << std::endl;
return (0);
}
需求
標頭: <type_traits>
Namespace: 標準