std::remove_pointer
来自 cppreference.com
定义在头文件 <type_traits> 中 |
||
template< class T > struct remove_pointer; |
(自 C++11 起) | |
提供成员类型定义 type
,它是 T
指向的类型,或者,如果 T
不是指针,则 type
与 T
相同。
如果程序为 std::remove_pointer
添加了特化,则行为未定义。
内容 |
[编辑] 成员类型
名称 | 定义 |
type
|
T 指向的类型,如果它不是指针,则为 T |
[编辑] 辅助类型
template< class T > using remove_pointer_t = typename remove_pointer<T>::type; |
(自 C++14 起) | |
[编辑] 可能的实现
template<class T> struct remove_pointer { typedef T type; }; template<class T> struct remove_pointer<T*> { typedef T type; }; template<class T> struct remove_pointer<T* const> { typedef T type; }; template<class T> struct remove_pointer<T* volatile> { typedef T type; }; template<class T> struct remove_pointer<T* const volatile> { typedef T type; }; |
[编辑] 示例
运行此代码
#include <type_traits> static_assert ( std::is_same_v<int, int> == true && std::is_same_v<int, int*> == false && std::is_same_v<int, int**> == false && std::is_same_v<int, std::remove_pointer_t<int>> == true && std::is_same_v<int, std::remove_pointer_t<int*>> == true && std::is_same_v<int, std::remove_pointer_t<int**>> == false && std::is_same_v<int, std::remove_pointer_t<int* const>> == true && std::is_same_v<int, std::remove_pointer_t<int* volatile>> == true && std::is_same_v<int, std::remove_pointer_t<int* const volatile>> == true ); int main() {}
[编辑] 另请参见
(C++11) |
检查类型是否为指针类型 (类模板) |
(C++11) |
向给定类型添加指针 (类模板) |