如何将 NSEnumerator 与 NSMutableDictionary 一起使用?
如何将 NSEnumerator 与 NSMutableDictionary 一起使用来打印所有键和值?
谢谢!
How do I use NSEnumerator with NSMutableDictionary, to print out all the keys and values?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
除非你需要使用NSEnumerator,否则你可以使用快速枚举(更快)和简洁。
您还可以使用具有快速枚举功能的枚举器:
这对于在数组中执行反向枚举器之类的操作非常有用。
Unless you need to use NSEnumerator, you can use fast enumeration (which is faster) and concise.
Also you can use an Enumerator with fast enumeration:
This is useful for things like doing the reverse enumerator in an array.
来自
NSDictionary
类参考:换句话说:
From the
NSDictionary
class reference:In other words:
这是没有对象搜索的版本。 请注意,objectForKey 调用不存在。
他们同时使用 keyEnumerator 和 objectEnumerator 。
Here is the version without object search. Notice that objectForKey calling not exist.
They use keyEnumerator and objectEnumerator both.