常量指针: 常量的指针 eg: const double *p, double const *p;
指针常量: 指针是常量 eg: double * const p;
背书:
In short,a const anywhere to the left of the * makes the date constant,and a const to the right of the * makes
the pointer itself constant.
const 在 * 左边,数据是常量
const 在 *右边 指针是常量
* :
asterisk
'æstərɪsk