今天在看代码中,看到了一个很不错的工具函数typeid().name(),可以用来返回变量的数据类型,很实用。下面来具体学习一下该函数。
首先来看typeid操作符,其返回结果是名为type_info的标准库类型的对象的引用。type_info中存储特定类型的有关信息,定义在typeinfo头文件中。
下面来看typeid().name(),用于获得表达式的类型,以c-style字符串形式返回类型名。用法示例如下。
注意:对非引用类型,typeid().name()是在编译时期识别的,只有引用类型才会在运行时识别。
#include<iostream>
#include <typeinfo>
using namespace std;
class Class1{};
class Class2:public Class1{};
void fn0();
int fn1(int n);
int main(void)
{
int a = 10;
int* b = &a;
float c;
double d;
cout << typeid(a).name() << endl;
cout << typeid(b).name() << endl;
cout << typeid(c).name() << endl;
cout << typeid(d).name() << endl;
cout << typeid(Class1).name() << endl;
cout << typeid(Class2).name() << endl;
cout << typeid(fn0).name() << endl;
cout << typeid(fn1).name() << endl;
cout << typeid(typeid(a).name()).name() << endl;
system("pause");
}
结果如下:
int
int *
float
double
class Class1
class Class2
void __cdecl(void)
int __cdecl(int)
char const *
请按任意键继续. . .
可以看到,typeid().name()可以返回变量、函数、类的数据类型名,功能是相当强大的。
cout << typeid(typeid(a).name()).name() << endl;可以看到结果为char const *,因此typeid().name()返回了存储类型名的字符串。
之前看有脑洞大的网友在一篇博客中问能够使用typeid().name()返回值作为类型名进行定义
typeid(a).name() b;//error!。这个想法其实很不错,我们在写代码的时候很可能需要设很多中间变量,如果不是自己写的代码,确定变量类型是很麻烦的。
来解答下这个问题。用typeid().name()定义肯定是不行的,通过上面的返回结果就可以解释,typeid().name()返回的是字符串,肯定是不能用于定义的。
C++:用typeid().name()获取类型名
最新推荐文章于 2024-09-03 23:22:59 发布