- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我已经搜索了一段时间,但找不到明确的答案。
很多人说使用 union 来键入双关是未定义且不好的做法。为什么是这样?考虑到您将原始信息写入的内存不会自行更改(除非它超出堆栈范围,但这不是 union 问题,我看不出它为什么会做任何未定义的事情的任何理由,那将是糟糕的设计)。
人们引用严格的别名规则,但在我看来,这就像说你不能这样做,因为你不能这样做。
如果不输入双关语, union 还有什么意义?我在某处看到它们应该用于在不同时间将相同的内存位置用于不同的信息,但为什么不在再次使用之前删除信息?
总结一下:
额外信息:我主要使用 C++,但想了解它和 C。具体来说,我使用 union 在 float 和原始十六进制之间转换以通过 CAN 总线发送。
最佳答案
重申一下,通过 union 进行类型双关在 C 中非常好(但在 C++ 中则不行)。相比之下,使用指针强制转换违反了 C99 严格的别名并且是有问题的,因为不同的类型可能有不同的对齐要求,如果你做错了,你可能会引发 SIGBUS。使用 union ,这绝不是问题。
来自 C 标准的相关引用是:
C89 第 3.3.2.3 节第 5 节:
if a member of a union object is accessed after a value has been stored in a different member of the object, the behavior is implementation-defined
C11 第 6.5.2.3 节第 3 节:
A postfix expression followed by the . operator and an identifier designates a member of a structure or union object. The value is that of the named member
带有以下脚注 95:
If the member used to read the contents of a union object is not the same as the member last used to store a value in the object, the appropriate part of the object representation of the value is reinterpreted as an object representation in the new type as described in 6.2.6 (a process sometimes called ‘‘type punning’’). This might be a trap representation.
这应该非常清楚。
James 很困惑,因为 C11 第 6.7.2.1 §16 节写道
The value of at most one of the members can be stored in a union object at any time.
这似乎是矛盾的,但事实并非如此:与 C++ 相比,在 C 中没有事件成员的概念,通过不兼容类型的表达式访问单个存储值是完全可以的。
另见 C11 附件 J.1 §1:
The values of bytes that correspond to union members other than the one last stored into [are unspecified].
在 C99 中,这用于读取
The value of a union member other than the last one stored into [is unspecified]
这是不正确的。由于附件不规范,它没有对自己的 TC 进行评级,必须等到下一个标准修订版才能修复。
GNU 对标准 C++(和 C90)的扩展do explicitly allow type-punning with unions .其他不支持 GNU 扩展的编译器也可能支持 union 类型双关语,但它不是基础语言标准的一部分。
关于c++ - union 和类型双关语,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25664848/
自从我的问题here无法自信地回答,我在这里再次询问,希望有人确切知道: 指向 union 的指针和包含指向其元素的指针的 union 之间有什么区别(除了语法之外)吗? this中生成的程序集示例是
在 C 语言中,是否可以在另一个 union 体中定义一个 union 体?如果不是,为什么不可能?或者如果可以,可以在哪里使用? 最佳答案 假设您要定义: union myun { int x;
在 C 中,是否可以在另一个 union 中定义一个 union ?如果不是,为什么不可能?或者如果是,它可以在哪里使用? 最佳答案 假设你想定义: union myun { int x; s
我正在阅读一些代码并发现如下内容: typedef union { int int32; int boolean; time_t date; char *string;
我正在学习Lua,我更愿意使用冒号(:)作为方法。不幸的是,它并非在所有地方都有效。看我的代码: 设置= {} 本地mt = {} 函数Set:new(m) 本地集= {} setmetatable(
我遇到了一些性能问题,我有如下查询: SELECT * FROM Foo UNION SELECT * FROM Boo UNION SELECT * FROM Koo 我确信 Koo 不会返回任何重
This question already has answers here: C++ Structure Initialization (16个答案) 上个月关闭。 我正在尝试将一些用于嵌入式目标的
UNION 和 UNION ALL 有什么区别? 最佳答案 UNION 删除重复记录(结果中的所有列都相同),UNION ALL 则不会。 使用 UNION 而不是 UNION ALL 时会影响性能,
我想在两个表上使用联合运算符。我希望结果集消除由联合创建的重复值,但不消除表中预先存在的重复值。考虑这段代码... select b from (values (1), (2), (2
我知道 UNION 会删除重复项,但即使没有重复项也会更改结果顺序。 我有两个 select 语句,任何地方都没有 order by 语句 我想将它们合并或不合并(全部) 即 SELECT A UNI
基本上,我有一个 struct foo { /* variable denoting active member of union */ enum whichmembe
我有一个大规模查询,用于对许多表(每个表有数千行)执行 UNION ALL,然后在返回之前输出到临时表。 旧形式: SELECT * FROM (SELECT `a` AS `Human rea
UNION 和 UNION ALL 有什么区别? 最佳答案 UNION 删除重复记录(结果中的所有列都相同),UNION ALL 则不会。 使用 UNION 而不是 UNION ALL 时会影响性能,
如果我有两个 union 行结构: struct A { A() {} ~A() {} union { vector vi; vector db
考虑下面的代码,我已经写了: #include #include union myAccess { uint16_t access16; struct { uint
我想弄清楚你从 C99 中对齐变量的地役权中得到了什么: Exception to strict aliasing rule in C from 6.5.2.3 Structure and union
我正在通过 UNION 或 UNION ALL 从多个表中选择一列外键。 当重复无关紧要时,通常建议使用 UNION ALL 而不是 UNION 来解决性能问题。但是,在我的调用 PHP 脚本中,循环
在 C++ 中,union 可以包含静态成员,在类的情况下,这些成员属于一个类,因此对所有对象都是通用的。 union U { long l; int i; static long
任何人都可以提及普通和匿名 union (或结构)之间的区别吗?我刚找到一个: 不能在匿名 union 中定义函数。 最佳答案 您不需要点运算符“.”访问匿名 union 元素。 #include
我可能把这个复杂化了.. 我正在尝试在 Arduino 上用 C 语言为嵌入式应用程序制作一个相当可重用的分层菜单系统。我有结构来表示不同类型的菜单项,包括那些子菜单,以及这些菜单项的 union 是
我是一名优秀的程序员,十分优秀!