当键不存在时,NSMutableDictionary 返回 0xffffffff 而不是 nil

发布于 2024-12-06 13:45:06 字数 375 浏览 0 评论 0原文

我有一个 NSMutableDictionary 正在做一些奇怪的事情:

(gdb) po listenerRegistry
{
}
(gdb) po productID
com.mycompany.productid
(gdb) po [listenerRegistry objectForKey:[productID stringValue]]
0xffffffff does not appear to point to a valid object.
(gdb) po [listenerRegistry class]
__NSCFDictionary
(gdb) 

根据文档,对于不在字典中的键,应该返回 nil 。

以前有其他人见过这个吗?

I have an NSMutableDictionary that is doing something strange:

(gdb) po listenerRegistry
{
}
(gdb) po productID
com.mycompany.productid
(gdb) po [listenerRegistry objectForKey:[productID stringValue]]
0xffffffff does not appear to point to a valid object.
(gdb) po [listenerRegistry class]
__NSCFDictionary
(gdb) 

According to the docs, nil is supposed to be returned for keys that aren't in the dictionary.

Has anyone else seen this before?

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

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

发布评论

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

评论(1

許願樹丅啲祈禱 2024-12-13 13:45:06

回答我自己的问题。

NSMutableDictionary 中的对象属于 id 类型,并且 Monolo 的观察结果似乎是正确的,返回值看起来像 NSNotFound

显然,当要求该类型的项目不存在或未找到时,基础类会返回 NSNotFound (如所讨论的 此处)。虽然文档明确列出了 NSArray,但我不得不相信我的情况也发生了同样的情况。

Answering my own question.

The objects inside the NSMutableDictionary are of the type id <MyObserverProtocol>, and it would appear that Monolo was right in his observation that the returned value looks like NSNotFound.

Apparently, Foundation classes return NSNotFound when asked for items of that type when they don't exist or aren't found (as discussed here). While the documentation lists NSArrays explicitly, I feel compelled to believe the same is happening in my case.

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