c++关键字的意义是什么,求高手给答?

来源:百度知道 编辑:UC知道 时间:2024/07/07 00:18:22
auto bool break case catch char class
const const_cast continue default delete do double
dynamic_cast else enum explicit extern false float
for friend goto if inline int long
mutable namespace new operator private protected publie
register reinterpret_cast return short signed sizeof static
static_cast struct switch template this throw true
try typedef typeid typename union unsigned using
virtual void volatile while

auto 自动 bool 布尔 break 中断 case 情况 catch 捕获 char 字符 class 类
const 常量 const_cast 常量转换 continue 继续 default 默认/缺省 delete 删除,清空 do do..while..循环的do部分 double 双精度型
dynamic_cast 动态转换 else 其他(情况),否则 enum 枚举 explicit明显 显示的
extern 外部的 false 假,0 float 浮点型
for for循环 friend 友元 goto 转到 if 如果 inline 内联 int 整型 long 长整型
mutable 可变的 namespace 命名空间 new 申请内存块 operator 运算符 private私有的 protected保护的 public共有的
register 寄存的(和auto一类的) reinterpret_cast 重定义转换 return 返回 short 短整型 signed 有符号的 sizeof 计算字节数 static 静态的
static_cast 静态转换 struct结构 switch 列举 template 模板 this 指向对象本身的指针 throw 抛出(异常) true 真,非0,1
try 和catch配对使用的处理异常的 typedef 定义类型,将..定义为.. typeid 数据类型的名字 typename类型名字 union 联合 unsigned无符号的 using使用
vi