const int a = 10; int *p = (int *)&a; *p = 100; a的值到底有没有改变

NoSuchKey