c++的4中类型转换操作符(static_cast,reinterpret_cast,dynamic_cast,const_cast),RTTI
目录引入介绍static_cast介绍使用reinterpret_cast介绍使用const_cast介绍使用dynamic_cast介绍使用RTTI(运行时确定类型)介绍typeid运算符dynamic_cast运算符type_info类引入原本在c中,我们就已经接触到了很多类型转换--隐式类型转换和显式类型转换隐式--可能会导致精度缺失/代码变得不明确/不同编译器对隐式类型转换的处理方式可能有