命名空间
变体
操作

std::type_info::hash_code

来自 cppreference.com
< cpp‎ | types‎ | type info
 
 
实用程序库
语言支持
类型支持 (基本类型,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)

 
 
 
std::size_t hash_code() const noexcept;
(自 C++11 起)

返回一个未指定的(此处表示为散列码)值,以便对于所有引用相同类型的std::type_info 对象,它们的散列码都相同。

不提供其他保证:引用不同类型的std::type_info 对象可能具有相同的散列码(尽管标准建议实现尽量避免这种情况),并且相同类型的散列码可能在相同程序的不同调用之间发生变化。

内容

[编辑] 参数

(无)

[编辑] 返回值

对于所有引用相同类型的std::type_info 对象,其值相同。

[编辑] 示例

以下程序展示了在不使用std::type_index 的情况下,进行高效的类型-值映射的示例。

#include <functional>
#include <iostream>
#include <memory>
#include <string>
#include <typeinfo>
#include <unordered_map>
 
struct A
{
    virtual ~A() {}
};
 
struct B : A {};
struct C : A {};
 
using TypeInfoRef = std::reference_wrapper<const std::type_info>;
 
struct Hasher
{
    std::size_t operator()(TypeInfoRef code) const
    {
        return code.get().hash_code();
    }
};
 
struct EqualTo
{
    bool operator()(TypeInfoRef lhs, TypeInfoRef rhs) const
    {
        return lhs.get() == rhs.get();
    }
};
 
int main()
{
    std::unordered_map<TypeInfoRef, std::string, Hasher, EqualTo> type_names;
 
    type_names[typeid(int)] = "int";
    type_names[typeid(double)] = "double";
    type_names[typeid(A)] = "A";
    type_names[typeid(B)] = "B";
    type_names[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[typeid(i)] << '\n';
    std::cout << "d is " << type_names[typeid(d)] << '\n';
    std::cout << "a is " << type_names[typeid(a)] << '\n';
    std::cout << "*b is " << type_names[typeid(*b)] << '\n';
    std::cout << "*c is " << type_names[typeid(*c)] << '\n';
}

输出

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

[编辑] 另请参阅

(C++20 中已删除)
检查对象是否引用相同类型
(公共成员函数) [编辑]
类型的实现定义名称
(公共成员函数) [编辑]