为什么 NULL 得到的结果与 nil 不同?

发布于 2024-10-04 10:12:48 字数 130 浏览 3 评论 0原文

对于 AVAudioPlayer,当我 initWithContentsOfURL:error: 如果我传递 nil 它不起作用,但如果我传递 NULL 它就起作用。并且在文档中,它特别提到传递 NULL。这是为什么呢?

For AVAudioPlayer, when I initWithContentsOfURL:error: if I pass nil it doesn't work, but if I pass NULL it does. And in the documentation, it specifically says to pass NULL. Why is this?

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

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

发布评论

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

评论(2

网白 2024-10-11 10:12:48

原因是nil通常用于Objective-C对象类型,而NULL用于c风格的指针

The reason why is because nil is usually used for an Objective-C object type, while NULL is used for c-style pointers

不念旧人 2024-10-11 10:12:48

我怀疑发生了其他事情。如果你检查 nil 的定义,它与 NULL 相同:

#ifndef nil
#define nil NULL
#endif /* ! nil */

I would suspect something else is going on. If you check the definition of nil, it's the same as NULL:

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