const int x = 0; int main() { const int y = 0; *(int*)&x = 1; //Fail *(int*)&y = 1; //OK return 0; } //*(int*)&x = 1; 访问失败,因为链接器把x放在可执行文件的常量数据段中,这里const起到了写保护的作用; //*(int*)&y = 1; 访问成功,因为y在栈上,是可写的,这里const只是起类型检查的作用。