unsinged |
无符号的 |
double |
双倍的 |
float |
浮动, 浮点数 |
name |
名称,名字 |
password |
密码 常简写为pwd |
precision |
精度 应用: cout.precision(4) |
flags |
flag的复数 flag:标记 应用:cout.flags(xxx); |
fixed |
固定的 应用:cout.flags(cout.fixed); |
复原 应用:cout.unsetf(cout.fixed); |
|
const |
常量 constant 不变的 |
The variable 'age' is being used without being initialized.
变量’age’没有被初始化就使用了
解析:
The variable 'age' is being used without being initialized.
[变量] [使用] [没有] [初始化]