结构体成员的大小

发布于 2024-09-26 12:20:27 字数 139 浏览 5 评论 0原文

如何获取 C 结构体中成员的大小?

struct A
{
        char arr[64];
};

我需要这样的东西:

sizeof(A::arr)

谢谢

How can I get the size of a member in a struct in C?

struct A
{
        char arr[64];
};

i need something like that:

sizeof(A::arr)

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我不是你的备胎 2024-10-03 12:20:27
sizeof(((struct A*)0)->arr);

简而言之,将空指针转换为 struct A* 类型,但由于不计算 sizeof 的操作数,因此这是合法的,并且允许您获取结构成员的大小无需创建该结构的实例。

基本上,我们假设它的实例存在于地址 0 处,并且可用于确定偏移量和 sizeof 。

要进一步详细说明,请阅读这篇文章:

http://www.embedded.com/design/prototyping-and-development/4024941/Learn-a-new-trick-with-the-offsetof--macro

sizeof(((struct A*)0)->arr);

Briefly, cast a null pointer to a type of struct A*, but since the operand of sizeof is not evaluated, this is legal and allows you to get size of struct members without creating an instance of the struct.

Basically, we are pretending that an instance of it exists at address 0 and can be used for offset and sizeof determination.

To further elaborate, read this article:

http://www.embedded.com/design/prototyping-and-development/4024941/Learn-a-new-trick-with-the-offsetof--macro

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文