是否有引用的typeid?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了是否有引用的typeid?相关的知识,希望对你有一定的参考价值。
我正在寻找一种方法来获取类型的名称,类似于typeid
,但作为参考。根据this page,typeid
删除了参考。
如果type是引用类型,则结果引用引用的类型。
我正在寻找类似的代码
int x = 5;
int & y = x;
wcout << typeid( y ).name();
但其输出是“int&”而不是“int”。
答案
有关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;
}
另一答案
我所知道的唯一可行的方法就是使用Boost.TypeIndex
std::cout << boost::typeindex::type_id_with_cvr<decltype(x)>().pretty_name() << '
';
std::cout << boost::typeindex::type_id_with_cvr<decltype(y)>().pretty_name() << '
';
打印
int
int&
以上是关于是否有引用的typeid?的主要内容,如果未能解决你的问题,请参考以下文章