我正在寻找一种获取类型名称的方法,类似于typeid
但是用于引用。根据{{3}},typeid
删除了引用。
如果type是引用类型,则结果引用引用的类型。
我正在寻找类似于
的代码int x = 5;
int & y = x;
wcout << typeid( y ).name();
但其输出为&#34; int&amp;&#34;而不是&#34; int&#34;。
答案 0 :(得分:6)
我所知道的唯一可行的方法是使用Boost.TypeIndex
std::cout << boost::typeindex::type_id_with_cvr<decltype(x)>().pretty_name() << '\n';
std::cout << boost::typeindex::type_id_with_cvr<decltype(y)>().pretty_name() << '\n';
打印
int
int&
答案 1 :(得分:5)
有关C ++ 11的方法,请参阅this answer - 它涉及使用type_traits。以下是相关的代码部分:
#include <type_traits>
#include <typeinfo>
#ifndef _MSC_VER
# include <cxxabi.h>
#endif
#include <memory>
#include <string>
#include <cstdlib>
template <class T>
std::string
type_name()
{
typedef typename std::remove_reference<T>::type TR;
std::unique_ptr<char, void(*)(void*)> own
(
#ifndef _MSC_VER
abi::__cxa_demangle(typeid(TR).name(), nullptr,
nullptr, nullptr),
#else
nullptr,
#endif
std::free
);
std::string r = own != nullptr ? own.get() : typeid(TR).name();
if (std::is_const<TR>::value)
r += " const";
if (std::is_volatile<TR>::value)
r += " volatile";
if (std::is_lvalue_reference<T>::value)
r += "&";
else if (std::is_rvalue_reference<T>::value)
r += "&&";
return r;
}