has_nothrow_assign Class
將指定的測試類型則不會擲回。
template<class Ty>
struct has_nothrow_assign;
參數
- Ty
要查詢的類型。
備註
如果為 true,則保留型別述詞的執行個體的型別Ty有 nothrow 複製指派運算子,否則它會保留,則為 false。
Nothrow 函式具有空的函式擲回的規範,否則可以決定編譯器的函式不會擲回例外狀況。
範例
// std_tr1__type_traits__has_nothrow_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_nothrow_assign<trivial> == " << std::boolalpha
<< std::has_nothrow_assign<trivial>::value << std::endl;
std::cout << "has_nothrow_assign<throws> == " << std::boolalpha
<< std::has_nothrow_assign<throws>::value << std::endl;
return (0);
}
需求
標頭: <type_traits>
Namespace: 標準