How is a variable at the same address producing 2 different values?(同一地址的变量如何产生 2 个不同的值?)
问题描述
考虑一下:
#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
除非编译器进行优化,否则这对我来说几乎是不可能的.如何 ?
This almost seems impossible to me unless compiler is making optimizations. How ?
推荐答案
这是 未定义行为,您正在修改一个 const 变量,因此您对结果不抱任何期望.我们可以通过查看草案 C++ 标准部分 7.1.6.1
The cv-qualifiers 段落 4 看到这一点:
This is undefined behavior, you are modifying a const variable so you can have no expectation as to the results. We can see this by going to the draft C++ standard section 7.1.6.1
The cv-qualifiers paragraph 4 which says:
[...]任何在 const 对象的生命周期 (3.8) 期间对其进行修改的尝试都会导致未定义的行为.
[...]any attempt to modify a const object during its lifetime (3.8) results in undefined behavior.
甚至提供了一个例子:
const int* ciq = new const int (3); // initialized as required
int* iq = const_cast<int*>(ciq); // cast required
*iq = 4; // undefined: modifies a const object
在1.3.24
部分未定义行为的标准定义中,给出了以下可能的行为:
In the standard definition of undefined behaviour in section 1.3.24
, gives the following possible behaviors:
[...] 允许的未定义行为范围从完全忽略具有不可预测结果的情况,到在翻译或程序执行期间以环境特征的记录方式表现(无论是否发布诊断消息),终止翻译或执行(发出诊断消息).[...]
[...] Permissible undefined behavior ranges from ignoring the situation completely with unpredictable results, to behaving during translation or program execution in a documented manner characteristic of the environment (with or without the issuance of a diagnostic message), to terminating a translation or execution (with the issuance of a diagnostic message). [...]
这篇关于同一地址的变量如何产生 2 个不同的值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:同一地址的变量如何产生 2 个不同的值?
基础教程推荐
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- C++,'if' 表达式中的变量声明 2021-01-01