std::type_index
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <typeindex> 中定义
|
||
class type_index; |
(C++11 起) | |
The type_index
class is a wrapper class around a std::type_info object, that can be used as index in associative and unordered associative containers. The relationship with type_info
object is maintained through a pointer, therefore type_index
is CopyConstructible
and CopyAssignable
.
[编辑] 成员函数
构造对象 (公共成员函数) | |
比较基础std::type_info对象 原文: compares the underlying std::type_info objects (公共成员函数) | |
回报进行散列代码 (公共成员函数) | |
收益实现 与相关type_info对象的类型,定义的名称 原文: returns implementation defined name of the type, associated with underlying type_info object (公共成员函数) |
[编辑] Helper类
(C++11) |
std::type_index的哈希支持 (类模板特化) |
[编辑] 另请参阅
包含由编译器生成的类型信息。 这是由typeid的运算符返回的类。 (类) |