1
15
2
1034
9
const限定符 const可以用于定义变量,它的值不能被改变。 const int bufSize = 512; 如果有代码试图修改这个变量,就会发生编译错误。 指针和co...