命名空间
变体
操作

std::type_index

来自 cppreference.com
< cpp‎ | 类型
 
 
实用工具库
语言支持
类型支持 (基本类型,RTTI)
库功能测试宏 (C++20)
动态内存管理
程序实用工具
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三路比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
类型支持
基本类型
定长整数类型 (C++11)
定长浮点类型 (C++23)
(C++11)    
(C++17)
数值限制
C 数值限制接口
运行时类型信息
type_index
(C++11)
 
 
定义在头文件 <typeindex>
class type_index;
(自 C++11 起)

type_index 类是对 std::type_info 对象的包装类,它可以作为关联容器和无序关联容器的索引。与 type_info 对象的关系通过指针维护,因此 type_index可复制构造可复制赋值 的。

内容

[编辑] 成员函数

构造对象
(公共成员函数) [编辑]
(析构函数)
(隐式声明)
销毁 type_index 对象
(公共成员函数)
operator=
(隐式声明)
赋值 type_index 对象
(公共成员函数)
比较底层的 std::type_info 对象
(公共成员函数) [编辑]
返回哈希码
(公共成员函数) [编辑]
返回类型的实现定义名称,
与底层的 type_info 对象相关联
(公共成员函数) [编辑]

[编辑] 辅助类

std::type_index 的哈希支持
(类模板特化) [编辑]

[编辑] 示例

以下程序是类型值映射效率的示例。

#include <iostream>
#include <memory>
#include <string>
#include <typeindex>
#include <typeinfo>
#include <unordered_map>
 
struct A
{
    virtual ~A() {}
};
 
struct B : A {};
struct C : A {};
 
int main()
{
    std::unordered_map<std::type_index, std::string> type_names;
 
    type_names[std::type_index(typeid(int))] = "int";
    type_names[std::type_index(typeid(double))] = "double";
    type_names[std::type_index(typeid(A))] = "A";
    type_names[std::type_index(typeid(B))] = "B";
    type_names[std::type_index(typeid(C))] = "C";
 
    int i;
    double d;
    A a;
 
    // note that we're storing pointer to type A
    std::unique_ptr<A> b(new B);
    std::unique_ptr<A> c(new C);
 
    std::cout << "i is " << type_names[std::type_index(typeid(i))] << '\n';
    std::cout << "d is " << type_names[std::type_index(typeid(d))] << '\n';
    std::cout << "a is " << type_names[std::type_index(typeid(a))] << '\n';
    std::cout << "*b is " << type_names[std::type_index(typeid(*b))] << '\n';
    std::cout << "*c is " << type_names[std::type_index(typeid(*c))] << '\n';
}

输出

i is int
d is double
a is A
*b is B
*c is C

[编辑] 另请参阅

包含某些类型的相关信息,由 typeid 运算符返回的类
(类) [编辑]