2

代码:

const char * const key;

上面的指针中有 2 个 const,我第一次看到这样的东西。

我知道第一个 const 使指针指向的值不可变,但是第二个 const 是否使指针本身不可变?

任何人都可以帮助解释这一点吗?


@更新:

我写了一个程序来证明答案是正确的。

#include <stdio.h>

void testNoConstPoiner() {
    int i = 10;

    int *pi = &i;
    (*pi)++;
    printf("%d\n", i);
}

void testPreConstPoinerChangePointedValue() {
    int i = 10;

    const int *pi = &i;

    // this line will compile error
    // (*pi)++;
    printf("%d\n", *pi);
}


void testPreConstPoinerChangePointer() {
    int i = 10;
    int j = 20;

    const int *pi = &i;
    pi = &j;
    printf("%d\n", *pi);
}

void testAfterConstPoinerChangePointedValue() {
    int i = 10;

    int * const pi = &i;
    (*pi)++;
    printf("%d\n", *pi);
}

void testAfterConstPoinerChangePointer() {
    int i = 10;
    int j = 20;

    int * const pi = &i;
    // this line will compile error
    // pi = &j
    printf("%d\n", *pi);
}

void testDoublePoiner() {
    int i = 10;
    int j = 20;

    const int * const pi = &i;
    // both of following 2 lines will compile error
    // (*pi)++;
    // pi = &j
    printf("%d\n", *pi);
}

int main(int argc, char * argv[]) {
    testNoConstPoiner();

    testPreConstPoinerChangePointedValue();
    testPreConstPoinerChangePointer();

    testAfterConstPoinerChangePointedValue();
    testAfterConstPoinerChangePointer();

    testDoublePoiner();
}

取消注释 3 个函数中的行,将得到带有提示的编译错误。

4

2 回答 2

9

第一个 const 告诉你不能改变*keykey[i]等等

以下行无效

*key = 'a';
*(key + 2) = 'b';
key[i] = 'c';

第二个 const 告诉你不能改变key

以下行无效

key = newkey;
++key;

还要检查如何阅读这个复杂的声明


添加更多细节。

  1. const char *key:您可以更改键,但不能更改键指向的字符。
  2. char *const key:您不能更改键,但可以更改键指向的字符
  3. const char *const key:您不能更改键以及指针字符。
于 2014-11-22T06:31:13.187 回答
0

const [type]*意味着它是一个不会改变指向值的指针。 [type]* const意味着指针本身的值不能改变,即它一直指向同一个值,类似于 Javafinal关键字。

于 2014-11-22T06:31:42.437 回答