编译后结构体的大小可以改变吗?

发布于 2024-08-29 00:24:46 字数 627 浏览 8 评论 0原文

假设您有以下结构:

#include <windows.h> // BOOL is here.
#include <stdio.h>

typedef struct {
    BOOL someBool;
    char someCharArray[100];
    int someIntValue;
    BOOL moreBools, anotherOne, yetAgain;
    char someOthercharArray[23];
    int otherInt;
} Test;

int main(void) {
    printf("Structure size: %d, BOOL size: %d.\n", sizeof(Test), sizeof(BOOL));
}

当我在我的机器(32 位操作系统)中编译这段代码时,输​​出如下:

Structure size: 148, BOOL size: 4.

我想知道一旦编译,这些值是否可能会根据运行该代码的机器而改变程序。例如:如果我在 64 位机器上运行这个程序,输出会相同吗?或者一旦编译它就永远是一样的?

非常感谢您,如果这个问题的答案很明显,请原谅我......

suppose you have the following structure:

#include <windows.h> // BOOL is here.
#include <stdio.h>

typedef struct {
    BOOL someBool;
    char someCharArray[100];
    int someIntValue;
    BOOL moreBools, anotherOne, yetAgain;
    char someOthercharArray[23];
    int otherInt;
} Test;

int main(void) {
    printf("Structure size: %d, BOOL size: %d.\n", sizeof(Test), sizeof(BOOL));
}

When I compile this piece of code in my machine (32-bit OS) the output is the following:

Structure size: 148, BOOL size: 4.

I would like to know if, once compiled, these values may change depending on the machine which runs the program. E.g.: if I ran this program in a 64-bit machine, would the output be the same? Or once it's compiled it'll always be the same?

Thank you very much, and forgive me if the answer to this question is obvious...

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

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

发布评论

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

评论(2

左耳近心 2024-09-05 00:24:46

它是固定的,一旦编译就不会改变。在 64 位计算机上,它仍将作为 32 位应用程序运行。

It is fixed and will not change once compiled. On a 64-bit machine, it will still run as a 32-bit application.

如歌彻婉言 2024-09-05 00:24:46

他们不会改变,除非查克·诺里斯这么说。

They won't change, unless Chuck Norris says so.

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