本文介绍了结构和对齐问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

struct a

{

int b;

char a;

int c;

}


在i386上,这个结构的大小将是12个字节,因为3个字节是

在a之后填充,以便c对齐4字节边界。


所以我怀疑的是


1)只有当我坚持这个时,才会发挥可控性问题/>
结构在一个架构上(对于ex i386)并尝试在不同的架构上读取

结构(对于前摩托罗拉系列)

解决方案



我想澄清的另一件事是做所有的编译器对齐

结构成员使用自然对齐或者这一切都不同

从建筑到建筑




这是一种可能的对齐。



或者使用不同编译器或相同编译器的相同架构

有不同的选择。或者......


-

Ian Collins。


One more thing i want to get clarified is do all the compilers align
structure members using natural alignement or does this all differ
from architecture to architecture


That''s one possible alignment.

Or the same architecture with a different compiler, or the same compiler
with different options. Or...

--
Ian Collins.



这篇关于结构和对齐问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-28 23:07
查看更多