首页 > 代码库 > 类型转换

类型转换

情形 类型转换
删除const特性 const_cast
显示地执行语言支持的类型转换(例如:int转换成double,int转换成bool) static_cast
显示地执行用户自定义构造函数或转换例程所支持的类型转换 static_cast
将某个类的对象转换成其他(无关)类的对象 无法完成
某个类对象的指针(pointer-to-object)转换为同一继承层次结构中其他类对象的指针 static_cast或者dynamic_cast(推荐)
某个对象的引用(reference-to-object)转换为同一继承层次结构中其他类对象的引用 static_cast或者dynamic_cast(推荐)
某种类型的指针转换(pointer-to-type)为其他无关类型的指针 reinterpret_cast
某种类型的引用转换(reference-to-object)为其他无关类型的引用 reinterpret_cast
某个函数指针(point-to-function)转换为其他函数指针 reinterpret_cast

类型转换