- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我更改 union 中的指针时,我的其他指针会中断并显示无效指针。
自定义数据类型示例类:
struct CustomDataTypeExample {
float x;
float y;
float z;
CustomDataTypeExample() = default;
CustomDataTypeExample(float x, float y, float z) {
this->x = x;
this->y = y;
this->z = z;
};
// ...
};
ConfigCustomDataTypeExample 类:
struct ConfigCustomDataTypeExample {
public:
ConfigCustomDataTypeExample() = default;
ConfigCustomDataTypeExample(CustomDataTypeExample values) {
x = &values.x;
y = &values.y;
z = &values.z;
}
union {
struct {
CustomDataTypeExample* ex;
};
struct {
float* x;
float* y;
float* z;
};
};
};
主要的:
ConfigCustomDataTypeExample example({ 1.2f,3.4f,5.6f });
float value = 565;
example.x = &value;
std::cout << example.ex->x << ", " << example.ex->y << ", " << example.ex->z << "\n";
std::cout << *example.x << ", " << *example.y << ", " << *example.z << "\n";
输出:
565, -1.07374e+08, -1.07374e+08
565, 3.4, 5.6
究竟发生了什么?如果我不更改 example.x 以指向其他内容,它会正常工作,否则如果我更改它,则会破坏其他指针。
最佳答案
TL;博士:三种不同类型的未定义行为:生命周期问题、访问 union 的非事件成员(没有非标准扩展)和通过 example.ex
的成员取消引用无效的指针值。 (对声明的 union 所代表的误解)。
看起来您可以使用普通引用。完整的解决方案在最后描述。
更深入的分析
这实际上是一个非常有趣的问题,因为这里发生了很多事情!三种不同类型的未定义行为。让我们一点一点地讨论这些。
第一 ,就像评论中提到的那样,您正在分配参数 values
的地址至 x
, y
和 z
(成员地址)。参数values
有一个自动存储持续时间,这意味着它会在 ConfigCustomDataTypeExample
的构造函数结束时被破坏。 .
struct ConfigCustomDataTypeExample {
public:
ConfigCustomDataTypeExample() = default;
ConfigCustomDataTypeExample(CustomDataTypeExample values) {
x = &values.x;
y = &values.y;
z = &values.z;
} // Pass this line x, y and z store invalid pointer values
// (addresses to now destructed members of values).
// Any indirection through these pointers is undefined behavior.
...
使用您的程序,您仍然可以读取
y
的值。和
z
.这是未定义行为的本质:有时您可能会得到合理的结果,但没有任何保证。例如,当我尝试运行您的程序时,
y
得到了截然不同的结果。和
z
.这是第一个清晰的UB。接下来让我们检查 union 声明,以了解它真正代表什么。
union {
struct {
CustomDataTypeExample* ex;
};
struct {
float* x;
float* y;
float* z;
};
};
对于这个 union ,成员是两个匿名结构(请注意,C++ 标准禁止匿名结构)。 union 的大小由最大的结构体决定,即
float*
结构。对于 64 位系统,指针类型的大小通常为 8 个字节,因此对于 64 位系统,此 union 的大小为 24 个字节。
main
根据标准规则编程:
ConfigCustomDataTypeExample example({1.2f, 3.4f, 5.6f});
// The anonymous struct holding 3 float* is now the active member.
// Though, all of the pointers are invalid, as already mentioned.
float value = 565;
example.x = &value;
// example.x is now a valid ptr value
std::cout
<< example.ex->x << ", " // UB: Accessing a non-active member
<< example.ex->y << ", " // UB: non-active and invalid ptr (more on that later)
<< example.ex->z << "\n"; // UB: same as above
std::cout
<< *example.x << ", " // This is ok (active member and valid ptr)
<< *example.y << ", " // UB: indirection to an invalid ptr
<< *example.z << "\n"; // UB: same as above
再一次,未定义的行为足以打印
565
取消引用时
example.ex->x
.这是因为
float* x
和
example.ex->x
union 的二进制表示中的重叠,尽管这仍然是未定义的行为。
ConfigCustomDataTypeExample
来快速解决生命周期问题将引用作为参数:
ConfigCustomDataTypeExample(CustomDataTypeExample& values)
并声明一个
CustomDataTypeExample
主要变量。
我也在用 gcc 编译,其中带有 union 的类型双关定义明确(非标准扩展):
CustomDataTypeExample data{1.0f, 2.0f, 3.0f};
ConfigCustomDataTypeExample example(data);
float value = 565;
example.x = &value;
std::cout
<< example.ex->x << ", " // This is now ok (using gcc's non-standard extension)
<< example.ex->y << ", " // Something seems odd
<< example.ex->z << "\n"; // with these two lines
std::cout
<< *example.x << ", " // Now well defined
<< *example.y << ", " // same
<< *example.z << "\n"; // same
这里什么也没有。我的一次运行的输出是:
565, 1961.14, 4.59163e-41
565, 2, 3
好的,至少现在
x
,
y
和
z
值是有效的,但在取消引用
example.ex
的部分时我们仍然得到垃圾值.是什么赋予了?让我们回到我们 union 的声明并思考它如何转换为它的二进制表示。这是一个粗略的图表:
[float* x, float* y, float* z]
所以我们 union 的内存布局是三个浮点指针,
每个指向单个浮点值 (相当于一个存储三个浮点指针的数组,例如
float* arr[3]
)。
然而,与 example.ex
我们试图解释 float* x
作为 3 个浮点数组 .这是因为
CustomDataTypeExample
的内存布局相当于一个包含 3 个浮点值的数组,尝试引用其成员相当于数组索引。
example->ex
的解释在 C90 标准第 6.5.2.2 节脚注 82 上:
If the member used to access the contents of a union object is not the same as the member last used tostore a value in the object, the appropriate part of the object representation of the value is reinterpretedas an object representation in the newtype as described in 6.2.6 (a process sometimes called "type punning"). This might be a trap representation.
example.x = &value;
std::cout
<< example.ex->x << ", "
<< example.ex->y << ", "
<< example.ex->z << "\n";
使用
godbolt我们得到以下信息(我只选取了相关的部分):
// Copies the value of rax to the memory pointed by QWORD PTR [rbp-48]
mov QWORD PTR [rbp-48], rax // example.x = &value;
// Copy a 32-bit value from memory address rax to eax.
// (eax register is used here to pass the value to std::cout)
// No surprises yet, as this address has a well defined floating point value (526).
mov eax, DWORD PTR [rax] // example.ex->x
// Not good, tries to copy a floating point value from memory address
// [rax + 4 bytes]. Equivalent to *(&value + 1). This is gonna get
// whatever random junk is in that part of memory.
mov eax, DWORD PTR [rax+4] // example.ex->y
我们可以很清楚地看到编译器如何尝试解释
example.ex
指向的地址。
作为内存中包含 3 个浮点值的区域,即使它只包含一个 .因此,第一次读取没问题,但第二次和第三次取消引用就出错了。
float* value_ptr = &value;
std::cout
<< *value_ptr << ", " // equivalent to example.ex->x, OK
<< value_ptr[1] << ", " // equivalent to example.ex->y, plain UB
<< value_ptr[2] << '\n'; // equivalent to example.ex->z, plain UB
这是未定义行为的情况与第一种情况非常相似。该程序正在通过无效的指针值(
第三个 )执行间接访问。
main
时,这三个未定义的行为结合在一起导致出现奇怪的值。 .现在解决方案。
CustomDataTypeExample
显然是一个只将数据包含在其中的聚合,因此不需要为它显式声明特殊的成员函数(在这种情况下是构造函数)。特殊成员函数是隐式声明的(并且是微不足道的):
struct CustomDataTypeExample {
float x;
float y;
float z;
};
// Construct an instance of CustomDataTypeExample by aggregate initializing.
// This was also utilized earlier.
CustomDataTypeExample data{1.0f, 2.0f, 3.0f};
解决方案是什么,看起来您正试图为一个简单的问题提出一个额外的抽象层。简单的引用应该可以解决问题。没有理由进行复杂的 union 设置,正如您可能已经注意到的那样,它非常容易出错。在 C++ 中, union 应该只真正用于减少系统上的内存消耗,因为内存是一种稀缺资源。
ConfigCustomDataTypeExample
并像这样使用引用:
CustomDataTypeExample data{1.0f, 2.0f, 3.0f};
CustomDataTypeExample& data_ref = data;
// Modifies the contents of the existing data
data_ref.x = 565;
std::cout
<< data_ref.x << ", "
<< data_ref.y << ", "
<< data_ref.z << '\n';
当您使用具有自动存储持续时间的变量时,引用是必经之路。与指针相比,引用生命周期问题更难创建,整体解决方案通常更简单。
关于更改指针时 C++ 指针中断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64528030/
#include using namespace std; class C{ private: int value; public: C(){ value = 0;
这个问题已经有答案了: What is the difference between char a[] = ?string?; and char *p = ?string?;? (8 个回答) 已关闭
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 此帖子已于 8 个月
除了调试之外,是否有任何针对 c、c++ 或 c# 的测试工具,其工作原理类似于将独立函数复制粘贴到某个文本框,然后在其他文本框中输入参数? 最佳答案 也许您会考虑单元测试。我推荐你谷歌测试和谷歌模拟
我想在第二台显示器中移动一个窗口 (HWND)。问题是我尝试了很多方法,例如将分辨率加倍或输入负值,但它永远无法将窗口放在我的第二台显示器上。 关于如何在 C/C++/c# 中执行此操作的任何线索 最
我正在寻找 C/C++/C## 中不同类型 DES 的现有实现。我的运行平台是Windows XP/Vista/7。 我正在尝试编写一个 C# 程序,它将使用 DES 算法进行加密和解密。我需要一些实
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
有没有办法强制将另一个 窗口置于顶部? 不是应用程序的窗口,而是另一个已经在系统上运行的窗口。 (Windows, C/C++/C#) 最佳答案 SetWindowPos(that_window_ha
假设您可以在 C/C++ 或 Csharp 之间做出选择,并且您打算在 Windows 和 Linux 服务器上运行同一服务器的多个实例,那么构建套接字服务器应用程序的最明智选择是什么? 最佳答案 如
你们能告诉我它们之间的区别吗? 顺便问一下,有什么叫C++库或C库的吗? 最佳答案 C++ 标准库 和 C 标准库 是 C++ 和 C 标准定义的库,提供给 C++ 和 C 程序使用。那是那些词的共同
下面的测试代码,我将输出信息放在注释中。我使用的是 gcc 4.8.5 和 Centos 7.2。 #include #include class C { public:
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我的客户将使用名为 annoucement 的结构/类与客户通信。我想我会用 C++ 编写服务器。会有很多不同的类继承annoucement。我的问题是通过网络将这些类发送给客户端 我想也许我应该使用
我在 C# 中有以下函数: public Matrix ConcatDescriptors(IList> descriptors) { int cols = descriptors[0].Co
我有一个项目要编写一个函数来对某些数据执行某些操作。我可以用 C/C++ 编写代码,但我不想与雇主共享该函数的代码。相反,我只想让他有权在他自己的代码中调用该函数。是否可以?我想到了这两种方法 - 在
我使用的是编写糟糕的第 3 方 (C/C++) Api。我从托管代码(C++/CLI)中使用它。有时会出现“访问冲突错误”。这使整个应用程序崩溃。我知道我无法处理这些错误[如果指针访问非法内存位置等,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一些 C 代码,将使用 P/Invoke 从 C# 调用。我正在尝试为这个 C 函数定义一个 C# 等效项。 SomeData* DoSomething(); struct SomeData {
这个问题已经有答案了: Why are these constructs using pre and post-increment undefined behavior? (14 个回答) 已关闭 6
我是一名优秀的程序员,十分优秀!