码迷,mamicode.com
首页 > 其他好文 > 详细

类型转换

时间:2017-07-25 11:52:10      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:reference   table   删除   border   执行   enter   函数   自定义   用户   

情形 类型转换
删除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

类型转换

标签:reference   table   删除   border   执行   enter   函数   自定义   用户   

原文地址:http://www.cnblogs.com/liili/p/7114879.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!