避免在 iphone sdk 的 NSMutableDictionary 中添加相同的密钥?
我通过元素名称作为键在 NSMutableDictionary 中添加 xml 数据。我如何检查 当我再次添加相同的键而无需循环时,该键在字典中已经可用?
i add xml data in NSMutableDictionary through element name as key.How can I check
that the key is already available in dictionary when i add the same key again without loop?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
如果键不存在,objectForKey 将返回 nil。
try this:
objectForKey will return nil if a key doesn't exists.
如果你向字典询问带有该键的对象,如果没有找到,它将返回 nil。
或者,如果您不关心以前的值会发生什么,我认为您可以使用
而不是向字典添加对象。
If you ask the dictionary for the object with that key it will return nil if it is not found.
Or, if you don't care what happens to the previous value I think you could use
instead of adding objects to the dictionary.