类型转换
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了类型转换相关的知识,希望对你有一定的参考价值。
情形 | 类型转换 |
删除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 |
以上是关于类型转换的主要内容,如果未能解决你的问题,请参考以下文章