类型特性
类型特性定义一个编译时基于模板的结构,以查询或修改类型的属性。
试图特化定义于 <type_traits> 头文件的模板导致未定义行为,除了 std::common_type 可依照其所描述特化。
定义于<type_traits>头文件的模板可以用不完整类型实例化,除非另外有指定,尽管通常禁止以不完整类型实例化标准库模板。
类型属性
定义于头文件 <type_traits>
复合类型类别
继承自 std::integral_constant
成员常量
value [静态] | 若 T 为复合类型则为 true ,否则为 false(公开静态成员常量) |
成员函数
operator bool | 转换对象为 bool ,返回 value (公开成员函数) |
operator() (C++14) | 返回 value (公开成员函数) |
成员类型
类型 | 定义 |
value_type | bool |
type | std::integral_constant<bool, value> |
检查是否为复合类型
std::is_compound
template< class T > | (C++11 起) |
若 T
是复合类型(即数组、函数、对象指针、函数指针、成员对象指针、成员函数指针、引用、类、联合体或枚举,含任何 cv 限定变体),则提供等于 true 的成员常量 value
。对于任何其他类型, value
为 false 。
模板形参
T | - | 要检查的类型 |
辅助变量模板
template< class T > | (C++17 起) |
注意
复合类型是从基础类型构造的类型。任何 C++ 类型为基础或复合之一。
可能的实现
template< class T >
struct is_compound : std::integral_constant<bool, !std::is_fundamental<T>::value> {};
调用示例
#include <iostream>
#include <type_traits>
int main()
{
class cls {};
std::cout << "cls: "
<< (std::is_compound<cls>::value
? "T is compound"
: "T is not a compound") << std::endl;
std::cout << "int: "
<< (std::is_compound<int>::value
? "T is compound"
: "T is not a compound") << std::endl;
return 0;
}
输出
检查类型是否为左值引用或右值引用
std::is_reference
template< class T > | (C++11 起) |
若 T
是引用类型(左值引用或右值引用),则提供等于 true 的成员常量 value
。对于任何其他类型, value
为 false 。
模板形参
T | - | 要检查的类型 |
辅助变量模板
template< class T > | (C++17 起) |
可能的实现
template <class T> struct is_reference : std::false_type {};
template <class T> struct is_reference<T&> : std::true_type {};
template <class T> struct is_reference<T&&> : std::true_type {};
调用示例
#include <type_traits>
class A {};
int main()
{
std::cout << std::boolalpha;
std::cout << "std::is_reference<A>::value: "
<< std::is_reference<A>::value << std::endl;
std::cout << "std::is_reference<A&>::value: "
<< std::is_reference<A&>::value << std::endl;
std::cout << "std::is_reference < A&& >::value: "
<< std::is_reference < A&& >::value << std::endl;
std::cout << "std::is_reference<int>::value: "
<< std::is_reference<int>::value << std::endl;
std::cout << "std::is_reference<int&>::value: "
<< std::is_reference<int&>::value << std::endl;
std::cout << "std::is_reference < int&& >::value: "
<< std::is_reference < int&& >::value << std::endl;
return 0;
}
输出
检查类型是否为指向非静态成员函数或对象的指针类型
std::is_member_pointer
template< class T > | (C++11 起) |
若 T
为指向非静态成员对象或非静态成员函数的指针,则提供等于 true 的成员常量 value
。对于任何其他类型, value
为 false 。
模板形参
T | - | 要检查的类型 |
辅助变量模板
template< class T > | (C++17 起) |
可能的实现
template< class T >
struct is_member_pointer_helper : std::false_type {};
template< class T, class U >
struct is_member_pointer_helper<T U::*> : std::true_type {};
template< class T >
struct is_member_pointer :
is_member_pointer_helper<typename std::remove_cv<T>::type> {};
调用示例
#include <iostream>
#include <type_traits>
int main()
{
class cls {};
std::cout << "int(cls::*): "
<< (std::is_member_pointer<int(cls::*)>::value
? "T is member pointer"
: "T is not a member pointer") << std::endl;
std::cout << "int: "
<< (std::is_member_pointer<int>::value
? "T is member pointer"
: "T is not a member pointer") << std::endl;
return 0;
}