C++标准模板(STL)- 类型支持 (类型修改,从给定类型移除引用,std::remove_reference)

类型特性

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

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

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

类型修改

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

从给定类型移除引用

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

若类型 T 为引用类型,则提供成员 typedef type ,其为 T 所引用的类型。否则 typeT

成员类型

|--------|------------------------------|
| 名称 | 定义 |
| type | T 所引用的类型,或若 T 不是引用则为 T |

辅助类型

|----------------------------------------------------------------------------------------|---|-----------|
| template< class T > using remove_reference_t = typename remove_reference<T>::type; | | (C++14 起) |

可能的实现

template< class T > struct remove_reference      {typedef T type;};
template< class T > struct remove_reference<T&>  {typedef T type;};
template< class T > struct remove_reference<T&&> {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::is_same<int, std::remove_reference<int>::type>():        "
              << std::is_same<int, std::remove_reference<int>::type>() << std::endl;
    std::cout << "std::is_same<int, std::remove_reference<int &>::type>()>():   "
              << std::is_same<int, std::remove_reference<int &>::type>() << std::endl;
    std::cout << "std::is_same<int, std::remove_reference < int && >::type>():  "
              << std::is_same < int, std::remove_reference < int && >::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_reference<int>::type>():        true
std::is_same<int, std::remove_reference<int &>::type>()>():   true
std::is_same<int, std::remove_reference < int && >::type>():  true
相关推荐
诚丞成30 分钟前
计算世界之安生:C++继承的文水和智慧(上)
开发语言·c++
东风吹柳1 小时前
观察者模式(sigslot in C++)
c++·观察者模式·信号槽·sigslot
A懿轩A2 小时前
C/C++ 数据结构与算法【栈和队列】 栈+队列详细解析【日常学习,考研必备】带图+详细代码
c语言·数据结构·c++·学习·考研·算法·栈和队列
大胆飞猪3 小时前
C++9--前置++和后置++重载,const,日期类的实现(对前几篇知识点的应用)
c++
1 9 J3 小时前
数据结构 C/C++(实验五:图)
c语言·数据结构·c++·学习·算法
夕泠爱吃糖3 小时前
C++中如何实现序列化和反序列化?
服务器·数据库·c++
长潇若雪3 小时前
《类和对象:基础原理全解析(上篇)》
开发语言·c++·经验分享·类和对象
染指11105 小时前
50.第二阶段x86游戏实战2-lua获取本地寻路,跨地图寻路和获取当前地图id
c++·windows·lua·游戏安全·反游戏外挂·游戏逆向·luastudio
Code out the future5 小时前
【C++——临时对象,const T&】
开发语言·c++
sam-zy6 小时前
MFC用List Control 和Picture控件实现界面切换效果
c++·mfc