包含内部指针的联合的内存分配如何
union
{
unsigned char* pUc;
unsigned long* pUl;
unsigned short* pUs;
} up;
up(union) 的内存分配如何
union
{
unsigned char* pUc;
unsigned long* pUl;
unsigned short* pUs;
} up;
How will be the Memory allocation for the up(union)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
指向整数类型的指针的大小都相同,因此联合将占用足够的内存来包含单个指针。这有多大取决于您的平台。
Pointers to integer types are all the same size, so the union will take up enough memory to contain a single pointer. How big this is depends on your platform.
要知道对象
up
需要多少字节,有保证的方法是使用sizeof up
:记住对象中可能有填充字节。如果您想知道有多少位,请使用
CHAR_BIT * sizeof up
:记住对象中可能有填充位。The guaranteed way to know how many bytes the object
up
needs is to usesizeof up
: remember there may be padding bytes in the object.If you want to know how many bits, use
CHAR_BIT * sizeof up
: remember there may be padding bits in the object.