const char* name() const; // C++11
const char* name() const noexcept; // C++14
概要
型名を表す文字列を返す
戻り値
target->name()
※target
は、type_index
のメンバ変数として保持されているtype_info
オブジェクトへのポインタ(説明用)
例
#include <iostream>
#include <typeindex>
int main()
{
std::type_index t1 = typeid(int);
std::type_index t2 = typeid(double);
std::type_index t3 = typeid(char);
std::cout << t1.name() << std::endl;
std::cout << t2.name() << std::endl;
std::cout << t3.name() << std::endl;
}
xxxxxxxxxx
#include <iostream>
#include <typeindex>
int main()
{
std::type_index t1 = typeid(int);
std::type_index t2 = typeid(double);
std::type_index t3 = typeid(char);
std::cout << t1.name() << std::endl;
std::cout << t2.name() << std::endl;
std::cout << t3.name() << std::endl;
}
出力例
i
d
c
バージョン
言語
- C++11
処理系
- Clang: ?
- GCC: 4.6.1 ✅
- ICC: ?
- Visual C++: 2010 ✅, 2012 ✅, 2013 ✅, 2015 ✅, 2017 ✅