has_nothrow_constructor 類別
測試,如果型別在預設建構函式不會擲回。
template<class Ty>
struct has_nothrow_constructor;
參數
- Ty
查詢的型別。
備註
這個型別述詞的執行個體之型別,則這個 Ty 有 nothrow 預設建構函式,否則它保留 false。
範例
// std_tr1__type_traits__has_nothrow_constructor.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_nothrow_constructor<trivial> == " << std::boolalpha
<< std::has_nothrow_constructor<trivial>::value << std::endl;
std::cout << "has_nothrow_constructor<throws> == " << std::boolalpha
<< std::has_nothrow_constructor<throws>::value << std::endl;
return (0);
}
需求
標題: <type_traits>
命名空間: std