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
相关推荐
唐诺3 小时前
几种广泛使用的 C++ 编译器
c++·编译器
冷眼看人间恩怨4 小时前
【Qt笔记】QDockWidget控件详解
c++·笔记·qt·qdockwidget
红龙创客4 小时前
某狐畅游24校招-C++开发岗笔试(单选题)
开发语言·c++
Lenyiin4 小时前
第146场双周赛:统计符合条件长度为3的子数组数目、统计异或值为给定值的路径数目、判断网格图能否被切割成块、唯一中间众数子序列 Ⅰ
c++·算法·leetcode·周赛·lenyiin
yuanbenshidiaos6 小时前
c++---------数据类型
java·jvm·c++
十年一梦实验室6 小时前
【C++】sophus : sim_details.hpp 实现了矩阵函数 W、其导数,以及其逆 (十七)
开发语言·c++·线性代数·矩阵
taoyong0016 小时前
代码随想录算法训练营第十一天-239.滑动窗口最大值
c++·算法
这是我587 小时前
C++打小怪游戏
c++·其他·游戏·visual studio·小怪·大型·怪物
fpcc7 小时前
跟我学c++中级篇——C++中的缓存利用
c++·缓存
呆萌很7 小时前
C++ 集合 list 使用
c++