C++标准模板(STL)- 类型支持 (类型修改,移除给定类型的一层指针,std::remove_pointer)

类型特性

类型特性定义一个编译时基于模板的结构,以查询或修改类型的属性。

试图特化定义于 <type_traits> 头文件的模板导致未定义行为,除了 std::common_type 可依照其所描述特化。

定义于<type_traits>头文件的模板可以用不完整类型实例化,除非另外有指定,尽管通常禁止以不完整类型实例化标准库模板。

类型修改

类型修改模板通过应用修改到模板参数,创建新类型定义。结果类型可以通过成员 typedef type 访问。

移除给定类型的一层指针

std::remove_pointer

|----------------------------------------------|---|-----------|
| template< class T > struct remove_pointer; | | (C++11 起) |

提供成员 typedef type ,其为 T 所指向的类型,或若 T 不是指针,则 typeT 相同。

成员类型

|--------|------------------------------|
| 名称 | 定义 |
| type | T 所指向的类型,或若 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 <iostream>
#include <type_traits>

int main()
{
    std::cout << std::boolalpha;
    std::cout << "std::is_same<int, int>():                 "
              << std::is_same<int, int>() << std::endl;
    std::cout << "std::is_same<int, int*>():                "
              << std::is_same<int, int*>() << std::endl;
    std::cout << "std::is_same<int, int**>():               "
              << std::is_same<int, int**>() << std::endl;
    std::cout << "----------------------------------------------------------------------" << std::endl;

    std::cout << "std::is_same<int, std::remove_pointer<int>::type>():      "
              << std::is_same<int, std::remove_pointer<int>::type>() << std::endl;
    std::cout << "std::is_same<int, std::remove_pointer<int*>::type>():     "
              << std::is_same<int, std::remove_pointer<int*>::type>() << std::endl;
    std::cout << "std::is_same<int, std::remove_pointer<int**>::type>():    "
              << std::is_same<int, std::remove_pointer<int**>::type>() << std::endl;
    std::cout << "----------------------------------------------------------------------" << std::endl;

    std::cout << "std::is_same<int, std::remove_pointer<int* const>::type>():           "
              << std::is_same<int, std::remove_pointer<int* const>::type>() << std::endl;
    std::cout << "std::is_same<int, std::remove_pointer<int* volatile>::type>():        "
              << std::is_same<int, std::remove_pointer<int* volatile>::type>() << std::endl;
    std::cout << "std::is_same<int, std::remove_pointer<int* const volatile>::type>():  "
              << std::is_same<int, std::remove_pointer<int* const volatile>::type>() << std::endl;

    return 0;
}

输出

std::is_same<int, int>():                 true
std::is_same<int, int*>():                false
std::is_same<int, int**>():               false
----------------------------------------------------------------------
std::is_same<int, std::remove_pointer<int>::type>():      true
std::is_same<int, std::remove_pointer<int*>::type>():     true
std::is_same<int, std::remove_pointer<int**>::type>():    false
----------------------------------------------------------------------
std::is_same<int, std::remove_pointer<int* const>::type>():           true
std::is_same<int, std::remove_pointer<int* volatile>::type>():        true
std::is_same<int, std::remove_pointer<int* const volatile>::type>():  true
相关推荐
捕鲸叉5 小时前
创建线程时传递参数给线程
开发语言·c++·算法
A charmer5 小时前
【C++】vector 类深度解析:探索动态数组的奥秘
开发语言·c++·算法
Peter_chq5 小时前
【操作系统】基于环形队列的生产消费模型
linux·c语言·开发语言·c++·后端
青花瓷7 小时前
C++__XCode工程中Debug版本库向Release版本库的切换
c++·xcode
幺零九零零8 小时前
【C++】socket套接字编程
linux·服务器·网络·c++
捕鲸叉8 小时前
MVC(Model-View-Controller)模式概述
开发语言·c++·设计模式
Dola_Pan9 小时前
C++算法和竞赛:哈希算法、动态规划DP算法、贪心算法、博弈算法
c++·算法·哈希算法
yanlou2339 小时前
KMP算法,next数组详解(c++)
开发语言·c++·kmp算法
小林熬夜学编程9 小时前
【Linux系统编程】第四十一弹---线程深度解析:从地址空间到多线程实践
linux·c语言·开发语言·c++·算法
阿洵Rain10 小时前
【C++】哈希
数据结构·c++·算法·list·哈希算法