博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【C++】typeinfo.h
阅读量:6413 次
发布时间:2019-06-23

本文共 1781 字,大约阅读时间需要 5 分钟。

函数typeid()返回值类型class type_info。
其中type_info重载了操作符==, !=, =分别用来比较是否相等、不等、赋值。
函数name()返回类型名称。
class type_info {public:  virtual ~type_info();  booloperator== (consttype_info& rhs) const;  booloperator!= (consttype_info& rhs) const;  boolbefore (consttype_info& rhs) const;  constchar* name() const;private:  type_info (consttype_info& rhs);  type_info& operator= (consttype_info& rhs);};
 

当类型是类和类指针时需要注意:

正常类基类指针base*指向继承类deived,则typeid(deived) != typeid(*base) 前者类型是继承类的type_info类型,而后者是父类的type_info类型。
虚类基类指针base*指向继承类deived,则typeid(deived) == typeid(*base) 两者都是父类的type_info类型。
// type_info example#include 
#include
using namespace std;struct Base {};struct Derived : Base {};struct Poly_Base {
virtual void Member(){}};struct Poly_Derived: Poly_Base {};int main() { // built-in types: int i; int * pi; cout << "int is: " << typeid(int).name() << endl; cout << " i is: " << typeid(i).name() << endl; cout << " pi is: " << typeid(pi).name() << endl; cout << "*pi is: " << typeid(*pi).name() << endl << endl; // non-polymorphic types: Derived derived; Base* pbase = &derived; cout << "derived is: " << typeid(derived).name() << endl; cout << " *pbase is: " << typeid(*pbase).name() << endl; cout << boolalpha << "same type? "; cout << ( typeid(derived)==typeid(*pbase) ) << endl << endl; // polymorphic types: Poly_Derived polyderived; Poly_Base* ppolybase = &polyderived; cout << "polyderived is: " << typeid(polyderived).name() << endl; cout << " *ppolybase is: " << typeid(*ppolybase).name() << endl; cout << boolalpha << "same type? "; cout << ( typeid(polyderived)==typeid(*ppolybase) ) << endl << endl;}

转载于:https://www.cnblogs.com/visayafan/archive/2011/11/29/2268135.html

你可能感兴趣的文章
Python全套零基础视频教程+软件2018最新编程视频!
查看>>
内存管理之1:x86段式内存管理与保护模式
查看>>
20180925上课截图
查看>>
IO输入/输出流的简单总结
查看>>
JavaScript之DOM-9 HTML DOM(HTML DOM概述、常用HTML DOM对象、HTML表单)
查看>>
技术成长之路(一)
查看>>
中国北方国际五金城硬件选型
查看>>
php.exe启动时提示缺少MVCR110.dall 64位 window系统 解决
查看>>
判断是否为数字方法
查看>>
[翻译] EF Core in Action 关于这本书
查看>>
js Uncaught TypeError: undefined is not a function
查看>>
数据库存储引擎
查看>>
[2019.2.13]BZOJ4318 OSU!
查看>>
版本号带两个小数点的,如何比较大小?( NSStringCompareOptions )
查看>>
QCustomplot使用分享(三) 图
查看>>
什么是java?
查看>>
WPF路径动画(动态逆向动画)
查看>>
Low Level Reader Protocol (LLRP) 简介
查看>>
[Micropython]TPYBoard v10x NRF24L01无线通讯模块使用教程
查看>>
mysql中show processlist过滤和杀死线程
查看>>