多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
[TOC] ## 概述 |运算符|描述|例子| |---|---|---| |dynamic_cast|运行时经效验的类型转换|dynamic_cast<type>(expr)| |static_cast|编译时经效验的类型转换|static_cast<type>(expr), int aa= static_cast<int>(76.23123)//76| |reinterpret_cast|未经效验的转换|reinterpret_cast<type>(expr)| |const_cast|常量转换|const_cast<type>(expr)| |sizeof|字节大小|sizeof expr 或 sizeof(type)| |new| 分配 |new type| |delete|删除内存分配|delete ptr| |?:|条件表达式|bool?expr:expr|