sizeof((int)(float)(char)i)) 当定义 int 时 (int)(float)(char) i;

发布于 2024-10-11 15:52:51 字数 197 浏览 7 评论 0原文

#include<stdio.h>
double i;

int main()
{
    (int)(float)(char) i;
    printf("%d", sizeof((int)(float)(char)i));
    return 0;
}

上述在 Microsoft 编译器上输出 4。为什么?

#include<stdio.h>
double i;

int main()
{
    (int)(float)(char) i;
    printf("%d", sizeof((int)(float)(char)i));
    return 0;
}

The above outputs 4 on a Micrsoft compiler. Why?

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

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

发布评论

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

评论(3

七度光 2024-10-18 15:52:51

sizeof 是变量的大小(以字节为单位)。在本例中,i 被转换为 4 个字节的 int

这些是 MS C++ 上类型的大小: http: //msdn.microsoft.com/en-us/library/cc953fe1(v=vs.71).aspx

sizeof is the size, in bytes, of the variable. In this case, i is being cast to an int which is 4 bytes.

These are the sizes of types on MS C++: http://msdn.microsoft.com/en-us/library/cc953fe1(v=vs.71).aspx

逆流 2024-10-18 15:52:51

最后一个转换操作是int,所以你将得到sizeOf(int)。整数大小因编译器而异,有些返回 2 字节,有些返回 4 字节。

The last cast operation is to int, so u will get the sizeOf(int). Integer size differes form compiler to another, some return 2-bytes and onther return 4-bytes.

九歌凝 2024-10-18 15:52:51

sizeof告诉你它在内存中占用了多少字节。您的平台和工具链显然有 32 位整数;它告诉您工具链(编译器)上的 int 占用 4 个字节。

sizeof something tells you how many bytes it takes up in memory. Your platform and toolchain clearly has 32-bit integers; it's telling you that int, on your toolchain (compiler), takes up 4 bytes.

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