</pre><pre name="code" class="html"> 刚刚写个小程序试了下指针常量和常量指针,原来自己一直搞反了 . const char*p; //常量指针 不能对*P赋值 char* const p; //指针常量 不能对p赋值,必须初始化