dynamic_cast 与 typeid
摘要:
C++中的类型转换分为两种: 隐式类型转换一般都是不经意间就发生了,比如int + float 时,int就被隐式的转换为float类型了。 显示类型转换包括四种方式:dynamic_cast、static_cast、const_cast、reinterpret_cast static_cast s 阅读全文
posted @ 2016-09-15 17:00 暴力的轮胎 阅读(800) 评论(0) 推荐(1) 编辑