对 nil 对象的快速枚举
这里应该发生什么?安全吗?
NSArray *nullArray=nil;
for (id obj in nullArray) {
// blah
}
更具体地说,我是否必须这样做:
NSArray *array=[thing methodThatMightReturnNil];
if (array) {
for (id obj in array) {
// blah
}
}
或者这样可以吗?:
for (id obj in [thing methodThatMightReturnNil]) {
// blah
}
What should happen here? Is it safe?
NSArray *nullArray=nil;
for (id obj in nullArray) {
// blah
}
More specifically, do I have to do this:
NSArray *array=[thing methodThatMightReturnNil];
if (array) {
for (id obj in array) {
// blah
}
}
or is this fine?:
for (id obj in [thing methodThatMightReturnNil]) {
// blah
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
快速枚举是通过方法
- countByEnumerateWithState:objects:count:
实现的,该方法返回 0 表示循环结束。由于nil
对于任何方法都会返回0
,因此您的循环永远不应该执行。 (所以它是安全的。)Fast enumeration is implemented through the method
- countByEnumeratingWithState:objects:count:
, which returns 0 to signal the end of the loop. Sincenil
returns0
for any method, your loop should never execute. (So it's safe.)什么都不会发生。 for-in 循环使用 NSFastEnumeration 协议来迭代集合中的元素,因此您实际上是向
nil
发送消息,这在 Objective-C 中是安全的。Nothing will happen. A for-in loop uses the
NSFastEnumeration
protocol to iterate over the elements in a collection, so you're essentially sending a message tonil
which is safe in Objective-C.