is_compound 類別
測試,如果指定的型別不是必要的。
template<class Ty>
struct is_compound;
參數
- Ty
查詢的型別。
備註
這個型別述詞的執行個體則為 false ,如果 Ty 的型別為基本型別 (也就是說,如果 is_fundamental<Ty> 會包含 true);否則,它會保留 true。 因此,述詞保存 true ,如果 Ty 是陣列型別、函式型別、指標或 void 物件或函式,參考、類別、等位、列舉型別或指標參考非靜態類別成員,或是 cv 限定 表單其中一個。
範例
// std_tr1__type_traits__is_compound.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
struct trivial
{
int val;
};
int main()
{
std::cout << "is_compound<trivial> == " << std::boolalpha
<< std::is_compound<trivial>::value << std::endl;
std::cout << "is_compound<int[]> == " << std::boolalpha
<< std::is_compound<int[]>::value << std::endl;
std::cout << "is_compound<int()> == " << std::boolalpha
<< std::is_compound<int()>::value << std::endl;
std::cout << "is_compound<int&> == " << std::boolalpha
<< std::is_compound<int&>::value << std::endl;
std::cout << "is_compound<void *> == " << std::boolalpha
<< std::is_compound<void *>::value << std::endl;
std::cout << "is_compound<int> == " << std::boolalpha
<< std::is_compound<int>::value << std::endl;
return (0);
}
需求
標題: <type_traits>
命名空間: std