nsdictionary objectforkey - 搜索并获取该值

发布于 2024-09-02 03:15:46 字数 198 浏览 1 评论 0原文

我在我的 iPhone 应用程序中使用 NSDictionary。 我正在使用“objectForKey:”方法来获取键的值。 一个线程(第一个线程)正在将键值添加到字典中,另一个线程(第二个线程)正在读取它们。 在第二个线程中,我想获取第一个线程有时没有添加的键的值。因此,在第二个线程中,我想搜索某个键,然后获取该值。可能的? 如果我提供的字典中不存在的键怎么办?它会返回什么?

I'm using NSDictionary in my iphone app.
I am using "objectForKey:" method to get the value of a key.
One thread (first thread) is adding key-value to a dictionary and other thread (second thread) is reading them.
In second thread, i want to get a value for a key which first thread some times didn't add by that time. So, in 2nd thread i want search for some key and then get that value. Possible?
What if I provide a key in dictionary that doesn't exist? what will it return?

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

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

发布评论

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

评论(1

‘画卷フ 2024-09-09 03:15:46

您需要使用 NSLock< /a> 同步对字典的访问,以便您的操作是线程安全的。至于您关于 [NSDictionary -objectForKey] 方法,根据文档,如果 key 不存在(即没有关联值)在字典中。

You need to use NSLock to synchronize access to your dictionary, in order for your operation to be threadsafe. As for your question about the [NSDictionary -objectForKey] method, according to the documention, it will return nil if the key is not present (i.e. has no associated value) in the dictionary.

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