运算符表

最后更新于:2022-04-02 02:06:36

[TOC] ## 概述 |运算符|描述|例子| |---|---|---| |dynamic_cast|运行时经效验的类型转换|dynamic_cast(expr)| |static_cast|编译时经效验的类型转换|static_cast(expr), int aa= static_cast(76.23123)//76| |reinterpret_cast|未经效验的转换|reinterpret_cast(expr)| |const_cast|常量转换|const_cast(expr)| |sizeof|字节大小|sizeof expr 或 sizeof(type)| |new| 分配 |new type| |delete|删除内存分配|delete ptr| |?:|条件表达式|bool?expr:expr|
';