- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
假设我有两个具有相同初始成员序列的 POD 结构 A
和 B
,但后来有些不同(我知道,这可以通过继承轻松解决) .
struct A {
int x;
uint64_t y;
int z;
};
struct B {
int x;
uint64_t y;
int8_t z;
};
指向结构的指针需要指向初始成员(§9.2.20 [class.mem])。
现在还有两个问题:
两个结构中公共(public)成员的对齐方式必须相同吗?即,以下是否始终为真:
A a;
B b;
assert(offsetof(A, y) == offsetof(B, y));
如果不是:至少如果我将结构放入 union 中,那么这应该成立,因为标准(§9.2.19 [class.mem])说
If a standard-layout union contains two or more standard-layout structs that share a common initial sequence, and if the standard-layout union object currently contains one of these standard-layout structs, it is permitted to inspect the common initial part of any of them.
我在这里添加一个额外的例子。
struct A {
int x;
uint64_t y;
int z;
};
struct B {
int x;
uint64_t y;
int8_t z;
};
B convertToB(A& a);
void g() {
A a;
// at this point, I cannot rely on offset(A, y) == offset(B, y)
B b = convertToB(a);
// since I do the copy over the union, offset(A, y) == offset(B, y) holds
}
union U {
A asA;
B asB;
};
B convertToB(A& a) {
U u;
// at this point, offset(A, y) == offset(B, y) holds
u.asA = a;
return u.asB;
}
因为我没有机会知道是否在某个时候, union 发生了复制,并且结构必须在任何地方都相同,所以我声称,offset(A, y) == offset(B, y)
必须持有。
最佳答案
您可以在此处找到对象成员的排序要求:
9.2/13: Nonstatic data members of a (non-union) class with the same access control are allocated so that later members have higher addresses within a class object. The order of allocation of non-static data members with different access control is unspecified. Implementation alignment requirements might cause two adjacent members not to be allocated immediately after each other; so might requirements for space for managing virtual functions and virtual base classes.
在您的 struct
中,所有成员都具有相同的访问类,因此您在这里可以保证顺序。
但请注意引用的最后一句话:不保证两个连续成员之间的空间相同(尽管可能性不大)。这就是为什么我建议采用 union
方法。您不仅可以从标准的保证中受益,而且还可以在源代码中清楚地传达您的意图。
编辑
我们还可以考虑另一个方面:POD 类型是一种普通类型,具有标准布局。
9.2/16: Two standard-layout struct types are layout-compatible if they have the same number of non-static data members and corresponding non-static data members (in declaration order) have layout-compatible types
3.9/11: If two types T1 and T2 are the same type, then T1 and T2 are layout-compatible types.
再一次,你发现你没有任何保证,只要你的结构在某个点发散。但是我知道这可以保证 u.asB
的布局与它返回的 B
对象兼容。
最后,我希望能找到一个更具体的可复制对象的保证:
3.9/2: For any object (other than a base-class subobject) of trivially copyable type T, whether or not the object holds a valid value of type T, the underlying bytes making up the object can be copied into an array of char or unsigned char. If the content of the array of char or unsigned char is copied back into the object, the object shall subsequently hold its original value.
我认为可以从中推断出,在您的情况下,将一个值存储在 union 中但读取另一个值是可行的。但是请注意,根据此(非规范)注释,这不是一般事实:
9.5/4: [Note: In general, one must use explicit destructor calls and placement new operators to change the active member of a union. —end note]
关于c++ - 普通旧数据 - 对齐要求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37373006/
几周前,我安装了一个新的 ssl 证书来替换一个过期的证书。 .crt 和 .key 的文件名保持不变。只是内容变了。 现在,当我访问我的网站时,它说证书已过期,我看到它正在使用旧的证书链。我可以确认
这个问题在这里已经有了答案: Make namespaces backwards compatible in PHP (4 个回答) 8 年前关闭。 我真的很想在我的工作流程中采用命名空间。据我了解,
我从 CN1 开始,然后以 Todo App 为例。当我在 Netbeans 中运行 de app 时,只出现一个空白表单,我更改了主题,添加了一个 jpg 图像并使用旧的 GUI Builder 在
我想知道是否有一些 Laravel 人员可以帮忙。 我有一个表单,其中有 2 个单选按钮,当表单提交时,它会通过验证器,如果验证器失败,它会返回表单,使用输入填充字段并显示错误消息。 我似乎无法对单选
我正在使用 Java 中没有泛型的旧代码。 hashMap 是在该代码中定义的,没有泛型,例如: Map A = new HashMap(); 在这段代码中,我想如何确定要在键和值中放入什么内容,以及
我想问一个关于项目兼容性的问题。我的论文项目是在Windows Vista和XP上在JRE 1.6和JDK 1.6下开发的。该项目使用Java新套接字。今天我尝试在 Windows 8(64 位)机器
有谁知道一个脚本可以将旧的 Products 命名空间样式 Plone 附加组件包装到 Egg 中吗? 生成setup.py 创建目录结构 还需要采取其他措施吗? 鸡蛋化过程中有什么陷阱吗? 最佳答案
我已经运行 MySQL 5.6.12 一段时间了。我决定将我的 WAMP 服务器更新到最新的 PHP 版本。 在此过程中,它还将 MySQL 更新到 5.6.17,保留 .12 数据,但无法访问。 如
最近,我一直在尝试根据互联网上的各种旧教程编写论坛代码,但是我最近遇到了一个问题 - 尽管我完全按照教程所述进行操作,但我收到了空格错误。我认为这可能是因为某些 MySQL 命令可能已更改。如果有人可
我正在创建对 Count 表的查询。 $Month = $_POST['Month']; $query = "SELECT ANY_VALUE(AD) AS ad, COU
如果我使用 mysqldump 工具备份旧版本的 MySql 数据库,是否存在任何已知风险?例如,如果我在生产机器上使用 mysqldump 5.6 来备份 MySql 5.X 数据库。 最佳答案 有
当将 columnsData 值分配给 columns 时,我有两个 JSON 对象 columnsData 和 columns,这两个值都会更改。 var columnsData = [
我有一个需要在 gcc 4.4 上编译的多线程应用程序,我不允许使用 c++0x 标志。 我希望一个变量以原子方式运行,但不幸的是没有 C++0x 标志我无法使用 atomic在 C++ 中。 我试过
我可以借助广播事件(ACTION_TIME_CHANGED 和 ACTION_DATE_CHANGED)获取时间更改事件。 我需要在时间更改后获取之前的时间。例如,当前时间是 10:00。我要把时间改
我正在尝试在我的 Android 应用程序中创建一个 DatePickerDialog,但是当我创建一个 DatePickerDialog 时,我收到以下消息:Call requires API le
{!! Form::open(array('route' => 'posts.store', 'data-parsley-validate' => '')) !!} {{ Form::labe
我的问题与 iOS 周围的蓝牙技术有关。我看过关于蓝牙低功耗 101、新功能、基础知识等的 WWDC,以及关于使用 iOS 5 及更高版本中可用的 CoreBluetooth 框架的内容。我浏览了不同
我有一个有五个屏幕的应用。 在每个屏幕上,我在 viewDidLoad 中从服务器访问数据。 在每个屏幕上我都有下一个按钮。 当我从屏幕一转到屏幕五(通过单击下一步 4 次)时,在 NSLog 中,我
我最近在一家网络报纸找到了一份工作。在网站上,我们有一个非常古老且重要的 Symfony 应用程序,它是为一位年长的开发人员编写的,已经消失很久了。该应用程序是神圣的:是报纸收入的血液。问题是我们没有
我相信我已经找到了一种方法来实现类似可移植 C89 中众所周知的“struct hack”的方法。我很好奇这是否真的严格符合 C89。 主要思想是:我分配足够大的内存来容纳初始结构和数组元素。确切的大
我是一名优秀的程序员,十分优秀!