gpt4 book ai didi

c++ - 同一地址的变量如何产生 2 个不同的值?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:04:13 28 4
gpt4 key购买 nike

<分区>

考虑一下:

#include <iostream>
using namespace std;

int main(void)
{
const int a1 = 40;
const int* b1 = &a1;
char* c1 = (char *)(b1);
*c1 = 'A';
int *t = (int*)c1;


cout << a1 << " " << *t << endl;
cout << &a1 << " " << t << endl;

return 0;
}

这个的输出是:

40 65 
0xbfacbe8c 0xbfacbe8c

除非编译器进行优化,否则这对我来说几乎是不可能的。如何 ?

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com