const关键字及使用 发表于 2017-02-11 | 分类于 CPP 定义常量 const int MAX_VAL = 23; const string SCHOOL_NAME = “QDU”; 定义常量指针 不可通过常量指针修改其所指向的内容 1234567int n, m;const int *p = &n;*p = 5;//errorn = 4; // okp = &m; //ok//常量指针可通过强制类型转化 转化为非常量指针int * p1 = (int *)p;//ok 定义常应用1234int n;const int &r = n;r = 5;n = 4;