不可修改的(const)变量

const int a = 0; /* This variable is "unmodifiable", the compiler
                    should throw an error when this variable is changed */
int b = 0; /* This variable is modifiable */

b += 10; /* Changes the value of 'b' */
a += 10; /* Throws a compiler error */

const 资格仅表示我们无权更改数据。这并不意味着价值不能在我们背后改变。

_Bool doIt(double const* a) {
   double rememberA = *a;
   // do something long and complicated that calls other functions

   return rememberA == *a;
}

在执行其他调用期间,*a 可能已更改,因此此函数可能返回 falsetrue

警告

仍然可以使用指针更改具有 const 资格的变量:

const int a = 0;

int *a_ptr = (int*)&a; /* This conversion must be explicitly done with a cast */
*a_ptr += 10;          /* This has undefined behavior */

printf("a = %d\n", a); /* May print: "a = 10" */

但这样做是一个导致未定义行为的错误。这里的困难在于,这可能在简单的示例中表现得像预期的那样,但是当代码增长时会出错。