FAIRYFAR-INTERNAL
 
  FAIRYFAR-INTERNAL  |  SITEMAP  |  ABOUT-ME  |  HOME  
const char指针三种写法的区别

转自:https://blog.csdn.net/SilentOB/article/details/76994618

C/C++ 中关于以下三种定义:

  • const char *ptr;
  • char const *ptr;
  • char * const ptr;

现整理三者之间的区别与联系。

一、const char *ptr;

定义一个指向字符常量的指针,这里,ptr是一个指向 char* 类型的常量,所以不能用ptr来修改所指向的内容,换句话说,*ptr的值为const,不能修改。但是ptr的声明并不意味着它指向的值实际上就是一个常量,而只是意味着对ptr而言,这个值是常量。实验如下:ptr指向str,而str不是const,可以直接通过str变量来修改str的值,但是确不能通过ptr指针来修改。

img

gcc编译报错信息:

img

注释掉16行ptr[0] = 's';运行正常,运行结果为:

hello world gello world

另外还可以通过重新赋值给该指针来修改指针指向的值,如上代码中取消7、18行的注释,运行结果为:

hello world good game!!

二、char const *ptr;

此种写法和const char *等价,大家可以自行实验验证。

三、char * const ptr;

定义一个指向字符的指针常数,即const指针,实验得知,不能修改ptr指针,但是可以修改该指针指向的内容。实验如下:

img

gcc报错信息:

img

img

注释掉17行代码运行正常,运行结果为:

hello world

sello world

以上转自:https://blog.csdn.net/SilentOB/article/details/76994618

总结

  • const char *ptr==char const *ptr; 可以直接改变指针指向,但不能直接改变指针指向的值;*ptr=*ss;
  • char *const ptr; 可以直接改变指针指向的值,但不能直接改变指针指向;ptr[0]='s';
  • 但两者都可以通过改变所指向的指针的内容,来改变它的值。
snippet.c
int main()
{
    char str[] = "hello world";
    char sec[] = "code world";
 
 
    const char *ptr1 = str;
    cout << ptr1 << endl;
    strcpy(str,"hi world");
    cout << ptr1 << endl;
    ptr1 = sec;//直接改变指针指向
    cout << ptr1 << endl;
    sec[0] = 'o';
    cout << ptr1 << endl;
    ptr1[0] = 'a';//直接改变指针指向的值,报错
 
 
    char ss[] = "good game";
    char *const ptr2 = ss;
    cout << ptr2 << endl;
    ptr2[0] ='a';//直接改变指针指向的值
    cout << ptr2 << endl;
    strcpy(ptr2, "last");
    cout << ptr2 << endl;
    ss[0] = 'z';
    cout << ptr2 << endl;
    ptr2 = sec;//直接改变指针指向,报错
    system("pause");
}

参考



打赏作者以资鼓励:
移动端扫码阅读: