原创 常量指针与指针常量

2010-1-23 10:02 1900 7 7 分类: MCU/ 嵌入式


http://hi.baidu.com/fengxinwanli/blog/item/c4b238db<?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" />4a51afdcb7fd487d.html
C++的学习中,有人经常搞不清楚常量指针指针常量这两个概念。其实简单一点讲,常量指针所指向的地址上的数据是常量,而指针常量所指向的地址是常量,地址上面的数据是可以变化的。


    
下面看及格简单的例子,可以说明他们的区别:
            
第一个
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />


1 void main(){
2     char *str1={"Hello"};
3     char *str2={"Hello World"};
4     char * const ptr1 =str1 ;
5     //
指针常量--指针本身是常量,指向的地址不可以变化,但是指向的地址所对应的内容可以变化
6
7      ptr1 =str2; //
错误 因为这是一个常量指针,改变指向的地址了
8
9      printf("%s \n",*ptr1);
10      }
11
12
13 //
编译错误     error C3892: 'ptr1' : you cannot assign to a variable that is const    
14



第二个


1 void main(){
2     char *str1={"Hello"};
3     char *str2={"Hello World"};
4     char * const ptr1 =str1 ;
5     //
指针常量--指针本身是常量,指向的地址不可以变化,但是指向的地址所对应的内容可以变化
6
7      *ptr1 ='A';//
正确 因为指向的地址的内容是可以变化的
8
9      printf("%c \n",*ptr1);
10      }
11
12 //
输出   A
13


第三个


1 void main(){
2     char *str1={"Hello"};
3     char *str2={"Hello World"};
4     const char *ptr1 = str1;
5     //
常量指针--指向字符串常量,所指向的字符串内容不能变,但是指向的地址可以变化
6     
7      ptr1=str2;//
正确 因为指向的地址是可以变化的
8
9      printf("%s \n",ptr1);
10      }
11
12 //
输出 Hello World


第四个


1 void main(){
2     char *str1={"Hello"};
3     char *str2={"Hello World"};
4     const char *ptr1 = str2;
5     //
常量指针--指向字符串常量,所指向的字符串内容不能变,但是指向的地址可以变化
6     
7      ptr1='A';//
错误 因为指向的地址是内容是不可以变化的
8
9      printf("%c \n",ptr1);
10      }
11
12
13 //
编译错误     error C2440: '=' : cannot convert from 'char' to 'const char *'
14


相信从上面四个简单的例子可以看出他们不一样的地方把,在这里要请大家注意一下的地方是:
指针常量的申明:const 放在* 和指针名之间
Type * const pointer ;
常量指针的申明:const放在类型说明符之前 const Type *pointer ;

PARTNER CONTENT

文章评论0条评论)

登录后参与讨论
EE直播间
更多
我要评论
0
7
关闭 站长推荐上一条 /3 下一条