std::remove_pointer
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <type_traits> 中定义
|
||
template< class T > struct remove_pointer; |
(C++11 起) | |
Provides the member typedef type
which is the type pointed to by T
, or, if T
is not a pointer, then type
is the same as T
.
目录 |
[编辑] 会员类型
姓名
|
Definition |
type
|
the type pointed to by T or T if it's not a pointer
|
[编辑] 可能的实现
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;}; |
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
检查是否是指针类型 (类模板) | |
(C++11) |
为类型添加指针修饰符 (类模板) |