指针与const。

1)int const * b;//指针常量,指针指向的变量不能改变值

2)const int * a //指针常量,同上

3)  int *const c; //常量指针,指针本身不能改变值,例如数组名就是一个常量指针

posted @ 2011-11-20 02:31  madonion  阅读(151)  评论(0编辑  收藏  举报