gpt4 book ai didi

定义 NULL 和 NULL_POINTER 的正确方法?

转载 作者:太空狗 更新时间:2023-10-29 16:59:08 25 4
gpt4 key购买 nike

据我所知,C 是这样定义 NULL 的:

#define NULL ( (void *) 0)

那么,我们应该如何定义NULL_POINTER呢?我在我的程序中对它进行了相同的定义并且它起作用了,但我认为这只是巧合:

#define NULL_POINTER ( (void *) 0)

如果有的话,逻辑定义是什么?

最佳答案

#define NULL ( (void *) 0)

#define NULL 0

都有效。如果您需要为空指针实现自己的宏,则适用相同的规则。

C11(ISO/IEC 9899:201x) §6.3.2.3 Pointers Section 3

An integer constant expression with the value 0, or such an expression cast to typevoid *, is called a null pointer constant

关于定义 NULL 和 NULL_POINTER 的正确方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18781514/

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