std::is_pointer
来自cppreference.com
在标头 <type_traits> 定义
|
||
template< class T > struct is_pointer; |
(C++11 起) | |
std::is_pointer
是一元类型特征 (UnaryTypeTrait) 。
检查 T
是否为指向对象或函数的指针(包括 void 的指针,但不包括成员指针),或其 cv 限定版本。如果 T
是对象/函数指针类型,那么提供的成员常量 value
等于 true。否则,value
等于 false。
如果程序添加了 std::is_pointer
或 std::is_pointer_v
的特化,那么行为未定义。
模板形参
T | - | 要检查的类型 |
辅助变量模板
template< class T > inline constexpr bool is_pointer_v = is_pointer<T>::value; |
(C++17 起) | |
继承自 std::integral_constant
成员常量
value [静态] |
如果 T 为指针类型那么是 true,否则是 false (公开静态成员常量) |
成员函数
operator bool |
将对象转换到 bool,返回 value (公开成员函数) |
operator() (C++14) |
返回 value (公开成员函数) |
成员类型
类型 | 定义 |
value_type
|
bool |
type
|
std::integral_constant<bool, value> |
可能的实现
template<class T> struct is_pointer : std::false_type {}; template<class T> struct is_pointer<T*> : std::true_type {}; template<class T> struct is_pointer<T* const> : std::true_type {}; template<class T> struct is_pointer<T* volatile> : std::true_type {}; template<class T> struct is_pointer<T* const volatile> : std::true_type {}; |
示例
运行此代码
#include <type_traits> int main() { struct A { int m; void f() {} }; int A::*mem_data_ptr = &A::m; // 指向成员数据的指针 void (A::*mem_fun_ptr)() = &A::f; // 指向成员函数的指针 static_assert( ! std::is_pointer<A>::value && ! std::is_pointer_v<A> // 同上,但在 C++17 中! && ! std::is_pointer<A>() // 同上,使用继承的 operator bool && ! std::is_pointer<A>{} // 同上 && ! std::is_pointer<A>()() // 同上,使用继承的 operator() && ! std::is_pointer<A>{}() // 同上 && std::is_pointer_v<A*> && std::is_pointer_v<A const* volatile> && ! std::is_pointer_v<A&> && ! std::is_pointer_v<decltype(mem_data_ptr)> && ! std::is_pointer_v<decltype(mem_fun_ptr)> && std::is_pointer_v<void*> && ! std::is_pointer_v<int> && std::is_pointer_v<int*> && std::is_pointer_v<int**> && ! std::is_pointer_v<int[10]> && ! std::is_pointer_v<std::nullptr_t> && std::is_pointer_v<void (*)()> ); }
参阅
(C++11) |
检查类型是否为指向非静态成员函数或对象的指针类型 (类模板) |
(C++11) |
检查类型是否为指向非静态成员对象的指针 (类模板) |
(C++11) |
检查类型是否为指向非静态成员函数的指针 (类模板) |
(C++11) |
检查类型是否是数组类型 (类模板) |
(C++11) |
检查类型是否为标量类型 (类模板) |