命名空间
变体
操作

std::type_index::name

来自 cppreference.cn
< cpp‎ | 类型‎ | type_index
 
 
 
 
 
const char* name() const noexcept;
(C++11 起)

返回关联的 std::type_info 对象的名称。等同于直接调用 std::type_info::name()

目录

[编辑] 参数

(无)

[编辑] 返回值

关联的 std::type_info 对象的名称。

[编辑] 示例

#include <iostream>
#include <typeindex>
int main() {
    std::cout << std::type_index(typeid(std::cout)).name();
}

可能的输出

NSt3__113basic_ostreamIcNS_11char_traitsIcEEEE

[编辑] 缺陷报告

下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。

缺陷报告 应用于 发布时的行为 正确的行为
LWG 2144 C++11 type_index::name 不需要为 noexcept 需要