c 中 sizeof 运算符的大小是多少?

发布于 2024-10-15 14:47:05 字数 105 浏览 4 评论 0原文

最近我参加了一次关于“SureSoft Technology”的采访……在那次采访中,他们问了一个问题,比如“c中的sizeof运算符的大小是多少?”

如果有人知道答案与我分享吗?

In recent I was attend one Interview on "SureSoft Technology"...... In that interview, they ask one question lik "What is size for the sizeof operator in c? "

If any one Know answer Share with me?

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

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

发布评论

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

评论(4

暖心男生 2024-10-22 14:47:05

sizeof 运算符本身没有大小。它的结果通常*会在编译时变成常量值。

至于它返回的值,那就是参数的大小(以字节为单位)。结果的类型是 size_t (在 中定义)(§6.5.3.4.4)

* - 动态大小自动的显着例外数组。

The sizeof operator itself has no size. Its result will generally* turn into a constant value at compile time.

As for the value it returns, that would be the size, in bytes, of the argument. The type of the result is size_t (defined in <stdlib.h>) (§6.5.3.4.4)

* - with the notable exception of dynamically-sized automatic arrays.

浪漫人生路 2024-10-22 14:47:05

您可以在此处这里:sizeof的结果是size_t类型,并且:

“size_t 的实际类型取决于平台;一个常见的错误是假设 size_t 与 unsigned int 相同,例如,当从 32 位架构迁移到 64 位架构时,这可能会导致编程错误。
根据1999 ISO C标准(C99),size_t是至少16位的无符号整数类型。”

You'll find the answers here and here: the result of sizeof is of type size_t, and:

"The actual type of size_t is platform-dependent; a common mistake is to assume size_t is the same as unsigned int, which can lead to programming errors when moving from 32 to 64-bit architecture, for example.
According to the 1999 ISO C standard (C99), size_t is an unsigned integer type of at least 16 bits."

春庭雪 2024-10-22 14:47:05

stddef.h 中定义的类型 size_t。

The type size_t defined in stddef.h.

你与清晨阳光 2024-10-22 14:47:05

答案很简单 - 它是传递给 sizeof 的给定数据结构的大小(以字节为单位)。

例如:

sizeof(char) // one bytes
sizeof(int) // four bytes

希望有帮助。

The answer is simple - it's the size in bytes of the given data structure that you pass to sizeof.

For example:

sizeof(char) // one bytes
sizeof(int) // four bytes

Hope that helps.

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