什么时候应该使用static_cast,dynamic_cast,const_cast和reinterpret_cast?有什么用途:static_castdynamic_castconst_castreinterpret_castC风格演员 (type)value功能式演员 type(value)如何决定在哪些特定情况下使用哪个?
4 回答
慕虎7371278
TA贡献1802条经验 获得超4个赞
使用dynamic_cast
一个继承层次内进行转化的指针/引用。
使用static_cast
普通类型转换。
使用reinterpret_cast
的位模式的低级别重读。使用时要格外小心。
使用const_cast
铸造远const/volatile
。除非你使用const不正确的API,否则请避免这种情况。
- 4 回答
- 0 关注
- 1012 浏览
添加回答
举报
0/150
提交
取消