is_compound Class
,如果指定的类型不是基本的,测试。
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