替换 NSDictionary 中的键/值

发布于 2024-11-03 00:39:18 字数 134 浏览 1 评论 0原文

如果我有一个带有以下键/值“foo”/“bar”的字典并声明 [dictionary setObject:@"baz" forKey:@"foo"]; 这会替换当前的键值与“foo”/“baz”配对并删除“foo”/“bar”?

If I have a dictionary with the following key/value "foo"/"bar" and declared [dictionary setObject:@"baz" forKey:@"foo"]; would this replace the current key value pair with "foo"/"baz" and delete "foo"/"bar"?

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

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

发布评论

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

评论(2

画中仙 2024-11-10 00:39:18

NSMutableDictionary(与任何常见的哈希表一样)的行为是,如果它不存在,它会创建一个新的键/值对,如果它已经存在,它将用新值替换现有值。

The behave of an NSMutableDictionary (as any common hash table) is that if it does not exists it creates a new key/value pair, if it already exits it will replace the existing value with the new one.

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