gpt4 book ai didi

c - (int) sizeof(void *) 和 int 有什么区别?

转载 作者:太空宇宙 更新时间:2023-11-04 00:31:32 27 4
gpt4 key购买 nike

我只是 C 编程的初学者。我可以问一个简单的问题吗?(int) sizeof(void *)int 有什么区别?

例)

#define ptrint          int
#define PTRINT ((int) sizeof(void *))

最佳答案

第一种情况作为 int 的别名,因此您可以使用 ptrint 而不是 int。

第二种情况是以字节为单位的指针大小。因此,例如在 32 位系统上,它将返回 4。

ptrint a = 8;
ptrint b = a;

int sizeofptr = PTRINT;

关于c - (int) sizeof(void *) 和 int 有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13529658/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com