C++中有关const的一点心得 C++中有关const的一点心得 水晶扇 QQ: 2829743621 指向const的指针和const指针指向const的指针 ① 指向const的指针是指无法通过此指针修改其指向的数据(有可能通过别的方法修改),指针本身可以改变。 ② 指向const的指针定义方式有三种: ①const type * p; ②type const * p; ③const type const * p