#include <stdio.h>
int main()
{
const int c =0;
int *p =(int *)&c;
printf("start");
*p=6;
printf("c=%d",c);
printf("*p=%d",*p);
return 0;
}
演示结果:
root@txp-virtual-machine:/home/txp/c++# ./a.out
start
c=0
*p=6
三、c++中的const与宏的区别:
1,const 常量由编译器处理;
2,编译器对 const 常量进行类型检查和作用域检查;
3,宏定义由预处理器处理,单纯的文本替换,无类型和作用域检查;
为了大家方便理解,下面我们来举个例子来说明情况,不过为了说明c++里面const修饰的变量,本质还是变量,并且只有验证一下c语言里面的const只用在编译过程中有用,在运行期没有用,这里我们先举例一个c环境的代码,然后再到c++环境中编译,做一个简单的对比,方便大家理解:
#include <stdio.h>
void f()
{
#define a 3
const int b = 4;
}
void g()
{
printf("a = %d", a);
//printf("b = %d", b);
}
int main()
{
const int A = 1;
const int B = 2;
int array[A + B] = {0};
int i = 0;
for(i=0; i<(A + B); i++)
{
printf("array[%d] = %d", i, array[i]);
}
f();
g();
return 0;
}
演示结果,这个是在c环境下编译的现象:
root@txp-virtual-machine:/home/txp/c++# gcc test.c
test.c: In function ‘main’:
test.c:18:6: error: variable-sized object may not be initialized
int array[A + B] = {0};
^
test.c:18:6: warning: excess elements in array initializer [enabled by default]
test.c:18:6: warning: (near initialization for ‘array’) [enabled by default]
什么居然编译通过不了,不要吃惊,在刚才也说了结论。我们现在具体来看一下它的说了啥,“variable-sized object may not be initialized”意思是:可变大小的对象可能无法初始化,也就是说明在c语言中使用const修饰的变量A和B,本质上还是变量。这里另外再啰嗦已经,面试的时候,千万不要说const修饰的就是常量,在c语言里面真正比较好的常量例子,通过 enum(枚举)定义的标识符才是真正意义上的常量。