快速枚举排序
是否
for (id object in array) {
// do something with object
}
保证按照对象放入数组的顺序返回对象?
Do
for (id object in array) {
// do something with object
}
guarantee to return the objects in the order they are put in the array?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它只是枚举器的简写。因此,对于
NSArray
来说是是,对于NSSet
和NSDictionary
来说是否It's just shorthand for an enumerator. So yes for
NSArray
s, no forNSSet
s andNSDictionary
s